001. xfnTransExecVar

xfnTransExecVar 함수

구문

반환값

참고

예제

코드

Dim conn As ADODB.Connection

'Connection 객체 없이 실행

If Not xfnTransExecVar("SELECT * FROM xtCodes") Then

    xsbErrMsg "데이터 처리에 실패했습니다."

End If

'Connection객체 포함하여 실행

Set conn = CurrentProject.Connection

If Not xfnTransExecVar("SELECT * FROM xtCodes",conn) Then

    xsbErrMsg "데이터 처리에 실패했습니다."

End If