Use the ADOcontrol to create Recordset and Field objects. The Recordset object represents the entire set of records from a base table or the results of an executed command. At any time, the Recordset object only refers to a single record within the set as the current record. The Field object represents a column of data with a common data type.
ADO.recordset
ADO.field
The properties, methods and events of the Recordset object are described in the following table.
| Properties | Methods | Events |
|---|---|---|
| BOF, EOF | AddNew | None |
| Bookmark | CancelUpdate | |
| EditMode | Close (ADO) | |
| RecordCount | Delete | |
| GetRows | ||
| Move (ADO) | ||
| MoveFirst, MoveLast, MoveNext, MovePrevious | ||
| Open (ADO) | ||
| Update |
The properties, methods and events of the Field object are described in the following table.
| Properties | Methods | Events |
|---|---|---|
| ActualSize | None | None |
| Attributes | ||
| Name (ADO) | ||
| Type | ||
| UnderlyingValue | ||
| Value |
For information about using the ADO control see ActiveX Data Objects in the Microsoft Platform SDK or visit the Microsoft ADO web page.