Skip to content

Latest commit

 

History

History
56 lines (40 loc) · 1.21 KB

JetGotoBookmark.md

File metadata and controls

56 lines (40 loc) · 1.21 KB

Home

Function name : JetGotoBookmark

Group: Extensible Storage Engine (ESE, Jet Blue) - Library: esent


Positions a cursor to an index entry for the record that is associated with the specified bookmark.


Code examples:

Extensible Storage Engine class library

Declaration:

JET_ERR JET_API JetGotoBookmark(
  __in          JET_SESID sesid,
  __in          JET_TABLEID tableid,
  __in          void* pvBookmark,
  __in          unsigned long cbBookmark
);  

FoxPro declaration:

DECLARE INTEGER JetGotoBookmark IN esent;
	INTEGER sesid,;
	INTEGER tableid,;
	INTEGER pvBookmark,;
	LONG cbBookmark  

Parameters:

sesid The session to use for this call.

tableid The cursor to use for this call.

pvBookmark The buffer that contains the bookmark to use to position the cursor.

cbBookmark The size of the bookmark in the buffer (most likely 4 bytes).


Return value:

Returns the JET_ERR datatype with a predefined return code.