ADO::CursorOptionEnum
Specifies what functionality the Supports method should test for.
| Constant |
Value |
Description |
adAddNew |
16778240 |
Supports the AddNew method to add new records. |
adApproxPosition |
16384 |
Supports the AbsolutePosition and AbsolutePage properties. |
adBookmark |
8192 |
Supports the Bookmark property to gain access to specific records. |
adDelete |
16779264 |
Supports the Delete method to delete records. |
adFind |
524288 |
Supports the Find method to locate a row in a Recordset. |
adHoldRecords |
256 |
Retrieves more records or changes the next position without committing
all pending changes. |
adIndex |
1048576 |
Supports the Index property to name an index. |
adMovePrevious |
512 |
Supports the MoveFirst and MovePrevious methods, and Move or GetRows methods
to move the current record position backward without requiring bookmarks. |
adNotify |
262144 |
Indicates that the underlying data provider supports notifications
(which determines whether Recordset events are supported). |
adResync |
131072 |
Supports the Resync method to update the cursor with the data that
is visible in the underlying database. |
adSeek |
2097152 |
Supports the Seek method to locate a row in a Recordset. |
adUpdate |
16809984 |
Supports the Update method to modify existing data. |
adUpdateBatch |
65536 |
Supports batch updating (UpdateBatch and CancelBatch methods) to transmit
groups of changes to the provider. |
|