Use Bookmarks Property

ADO and SQL Server

ADO and SQL Server

Use Bookmarks Property

The Use Bookmarks property indicates whether the recordset supports bookmarks.

Applies To
Command Object Recordset Object
Syntax

object.Properties("Use Bookmarks") [= value]

Parts

object

Expression that evaluates to an object in the Applies To list.

value

Boolean that indicates bookmark support, as specified in Settings.

Settings
Value Description
True The recordset supports bookmarks. Column zero is the bookmark for the rows. This column obtains a bookmark value, which can be used to reposition to the row.
False The recordset does not support bookmarks. The recordset is sequential, and the values of the Literal Bookmarks property is ignored.

Data Type

adBoolean

Modifiable

Read/write

OLE DB Property

DBPROP_BOOKMARKS

Remarks

The value of this property is automatically set to True if the value of the Bookmarkable or Literal Bookmarks property is set to True.

See Also

Bookmarkable Property

Literal Bookmarks Property