Bookmark - property of the AdoRecordset object
Description:
The property returns or sets a bookmark. The bookmark saves the current record position.
Use the
Bookmark property property to save the current record position and return to that record at any time. Bookmarks are available only in
AdoRecordset objects that support bookmark functionality.
Two bookmarks that refer to the same record may have different values.
Note:
Property access for read and write.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var bkmark = oRs.Bookmark;
// Reading from the property
Dim bkmark
bkmark = oRs.Bookmark
' Reading from the property