| AbsolutePage | The property returns or sets the value that specifies the page number in the AdoRecordset object. |
|---|---|
| AbsolutePosition | The property returns or sets the value that specifies the ordinal position of the current record in the AdoRecordset object. |
| ActiveCommand | Returns the Command object associated with the AdoRecordset object. |
| ActiveConnection | The property returns or sets a definition for a connection if the connection is closed, or the current Connection object if the connection is open. |
| BOF | Detects whether the current record position is before the first record in the AdoRecordset object |
| Bookmark | The property returns or sets a bookmark. The bookmark saves the current record position. |
| CacheSize | The property returns or sets the number of records that can be cached. |
| CursorLocation | The property returns or sets the location of the cursor service. |
| CursorType | The property returns or sets the cursor type of the AdoRecordset object. |
| DataMember | The property returns or sets the name of the data area that will be retrieved from the object referenced by the DataSource property. |
| DataSource | Specifies an object containing data to be represented as a the AdoRecordset object |
| EditMode | Indicates the editing status of the current record (the ADO EditModeEnum value) |
| EOF | Detects whether the current record position is after the last record in the AdoRecordset object |
| Fields | Returns the Collection object which contains AdoField objects |
| Filter | The property returns or sets a filter for the data in the AdoRecordset object. |
| Index | The property returns or sets the name of the current index in the AdoRecordset object. |
| LockType | The property returns or sets a value that specifies the type of locking when editing a record in the AdoRecordset object. |
| MarshalOptions | The property returns or sets the value that specifies which records are to be returned to the server. |
| MaxRecords | The property returns or sets the maximum number of records to return from a query to the AdoRecordset object |
| PageCount | Returns the number of pages with data in the AdoRecordset object. |
| PageSize | The property returns or sets the maximum number of records allowed on a single page of the AdoRecordset object. |
| Pm_LastErr | The numeric error code of the result of the last executed method (property) of the AdoRecordset object |
| Pm_LastTextErr | The text description of the last executed method (property) of the AdoRecordset object |
| RecordCount | Returns the number of records in the AdoRecordset object |
| Sort | The property returns or sets the field names in the AdoRecordset to sort on. |
| Source | Sets a string value or the Command object reference, or returns a value of the String type that specifies the data source of the AdoRecordset object. |
| State | Detects whether the AdoRecordset object is open, closed, connecting, executing an asynchronous method or retrieving data |
| Status | Returns the status of the current record with regard to batch updates or other bulk operations. |
| StayInSync | The property returns or sets whether the reference to the child records will change when the parent record position changes. |
| AddNew() | Beginning of the edit mode for adding a record |
|---|---|
| Cancel() | Cancels an execution of the method |
| CancelBatch() | Cancels a batch update. |
| CancelUpdate() | End of the edit mode of the record, canceling changes |
| Clone() | Creates a duplicate of an existing AdoRecordset. |
| Close() | Closes a AdoRecordset. |
| CompareBookmarks() | Compares two bookmarks. |
| Delete() | Deletes record in the AdoRecordset object |
| Find() | Search for a record in the AdoRecordset object that meets the specified criteria |
| GetRows() | Copies multiple records of the AdoRecordset object into an 2-dimensional array |
| GetString() | Returns a AdoRecordset as a text string |
| Move() | Move the current record position in the AdoRecordset object by the specified number of records |
| MoveFirst() | Move the current record position to first record in the AdoRecordset object |
| MoveLast() | Move the current record position to the last record in the AdoRecordset object |
| MoveNext() | Move the current record position to the next record in the AdoRecordset object |
| MovePrevious() | Move the current record position to the previous record of the AdoRecordset object |
| NextRecordset() | Clears the current AdoRecordset object and returns the next AdoRecordset object by looping through a series of commands. |
| Open() | Opens a database element that allows access to records in the table, the results of a query, or to a saved AdoRecordset. |
| Requery() | Complete data read in the AdoRecordset object |
| Resync() | Refreshing the existing data in the AdoRecordset object |
| Save() | Saves the AdoRecordset object into the file or into the Stream object. |
| Seek() | Searches the index of the AdoRecordset object to find a record that matches the specified values. |
| Supports() | Returns a boolean value that specifies whether the AdoRecordset object supports a specific type of functionality. |
| Update() | End of the edit mode of record, writing changes |
| UpdateBatch() | Saves all changes in the AdoRecordset object to the database. Used when working in batch update mode. |