페이지 트리

버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.

...

코드 블럭
languagevb
titleSyntax
public long Execute(string dbmsCode, string sqlText){
}


Parameters

Name동작명비고
dbmsCode
dbms 코드
sqlText
실행할 sql문




Return Value

Type:  long

sql의 결과 값

...

코드 블럭
languagevb
titleExample
linenumberstrue
        Sub ExecuteTest()
             Dim mxmodule As Object


             Set mxmodule = Application.COMAddIns.Item("iMATRIX6iMATRIX.ExcelModule").Object
             
             'execute (dbmscode, sqltext, [optional] maxrecord)
             mxmodule.xapi.Execute "mtxrpty", "select * from mtx_user"
             If mxmodule.xapi.LastErrorCode != 0 Then
                     MsgBox "쿼리 실행 오류 " & mxmodule.xapi.LastErrorMessage
             Else
                 Range("a1").CopyFromRecordset mxmodule.xapi.LastRecordset
             End If
             Set rs = Nothing
         End Sub

...