LOTUS CONNECTORS


Examples: FieldName method
This agent executes an SQL query and displays the column number and the name of each field in the result set.

Uselsx "*LSXODBC"

Sub Initialize
 Dim con As New ODBCConnection
 Dim qry As New ODBCQuery
 Dim result As New ODBCResultSet
 Dim msg As String
 Set qry.Connection = con
 Set result.Query = qry
 con.ConnectTo("ATDB")
 qry.SQL = "SELECT * FROM STUDENTS"
 result.Execute
 msg = "Fields in STUDENTS table:" & Chr(10)
 For i = 1 To result.NumColumns
   msg = msg & Chr(10) & i & " " & result.FieldName(i)
 Next
 Messagebox msg,, "Field names"
 result.Close(DB_CLOSE)
 con.Disconnect
End Sub

See Also