 |
 |
Extensible Storage Engine (ESE, Jet Blue) Add comment |
 |
|
JetAddColumn
|
|
Adds a new column to an existing table in an ESE database. |
|
 |
 |
 |
|
JetBeginSession
|
|
Starts new ESE session and initializes and returns an ESE session handle |
|
 |
 |
 |
|
JetBeginTransaction
|
|
Causes a session to enter a transaction and create a new save point. |
|
 |
 |
 |
|
JetCloseDatabase
|
|
Closes a database file that was previously opened with JetOpenDatabase.
|
|
 |
 |
 |
|
JetCloseTable
|
|
Closes an open table in a database. The table is a temporary table or a normal table.
|
|
 |
 |
 |
|
JetCommitTransaction
|
|
Commits the changes made to the state of the database during the current save point and migrates them to the previous save point. |
|
 |
 |
 |
|
JetCreateDatabase
|
|
Creates and attaches a database file to be used with the ESE database engine. |
|
 |
 |
 |
|
JetCreateInstance
|
|
Allocates a new instance of the database engine for use in a single process. |
|
 |
 |
 |
|
JetCreateTable
|
|
Creates an empty table in an ESE database.
|
|
 |
 |
 |
|
JetDeleteTable
|
|
Deletes a table in an ESE database.
|
|
 |
 |
 |
|
JetDetachDatabase
|
|
Releases a database file that was previously attached to a database session. |
|
 |
 |
 |
|
JetEndSession
|
|
Ends the session, and cleans up and deallocates any resources associated with the specified session. |
|
 |
 |
 |
|
JetGetColumnInfo
|
|
Retrieves information about a column.
|
|
 |
 |
 |
|
JetGotoBookmark
|
|
Positions a cursor to an index entry for the record that is associated with the specified bookmark. |
|
 |
 |
 |
|
JetInit
|
|
Puts the database engine into a state where it can support application use of database files. |
|
 |
 |
 |
|
JetMove
|
|
Positions a cursor at the start or end of an index and traverses the entries in that index either forward or backward. |
|
 |
 |
 |
|
JetOpenTable
|
|
Opens a cursor on an existing table.
|
|
 |
 |
 |
|
JetPrepareUpdate
|
|
This is the first operation in performing an update, for the purposes of inserting a new record or replacing an existing record with new values. |
|
 |
 |
 |
|
JetRetrieveColumn
|
|
Retrieves a single column value from the current record. |
|
 |
 |
 |
|
JetRollback
|
|
Undoes the changes made to the state of the database and returns to the last save point. |
|
 |
 |
 |
|
JetSetColumn
|
|
Modifies a single column value in a modified record to be inserted or to update the current record. |
|
 |
 |
 |
|
JetTerm
|
|
Initiates the shutdown of an instance that has been initialized by JetInit.
|
|
 |
 |
 |
|
JetUpdate
|
|
Performs an update operation including inserting a new row into a table or updating an existing row.
|
|
 |
 |
 |
 |
| Code examples: |
 |
|
|
 |
|
 |
 |
User Contributed Notes: |
 |
 |
 |
 |
 |
 | A.M. | 2008-01-08 17:37:38 |  |
 |
 |
 | Read Wikipedia article on the Extensible Storage Engine http://en.wikipedia.org/wiki/Extensible_Storage_Engine |  |
 |
 |
 |
 |
 |
|