■ SELECT SQL을 실행하는 방법을 보여준다.
▶ 예제 코드 (VB)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
Dim pConnection As ADODB.Connection Dim pRecordset As ADODB.Recordset Set pConnection = GetMDBConnection("c:\test.mdb") ' "MDB 연결 구하기" 참조 If pConnection Is Nothing Then MsgBox "데이터베이스 파일 연결을 실패했습니다." Exit Sub End If Set pRecordset = GetRecordset(pConnection, "SELECT * FROM Sample") ' "레코드셋 구하기" 참조 If pRecordset Is Nothing Then MsgBox "SQL 실행시 에러가 발생했습니다." Exit Sub End If Do Until pRecordset.EOF Print pRecordset!Name ' 또는 Print pRecordset("Name").Value pRecordset.MoveNext Loop pRecordset.Close Set pRecordset = Nothing pConnection.Close Set pConnection = Nothing |