This section describes the Connection class provided in ADO DLL. The Connection class represents returning records of data after executing a query command to a database system.
RecordSets: A class representing returning records of data after executing
a query command to a database system. Main methods and properties offered by RecordSets
class:
"MoveFirst": Method to move to the first record.
"MoveLast": Method to move to the last record.
"MoveNext": Method to move to the next record.
"MovePrevious": Method to move to the previous record.
"Close": Method to close this recordset.
"BOF": Property to return true if the current record pointer is before the first record.
"EOF": Property to return true if the current record pointer is after the last record.
"Fields": Property to return a collection representing all the fields of the current record.