Skip to content

Latest commit

 

History

History
51 lines (32 loc) · 1.17 KB

File metadata and controls

51 lines (32 loc) · 1.17 KB

Home

Function name : JetBeginTransaction

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


Causes a session to enter a transaction and create a new save point.


Code examples:

Extensible Storage Engine class library

Declaration:

JET_ERR JET_API JetBeginTransaction(
  __in          JET_SESID sesid
);  

FoxPro declaration:

DECLARE INTEGER JetBeginTransaction IN esent;
	INTEGER sesid  

Parameters:

sesid The session to use for this call.


Return value:

Returns the JET_ERR datatype with a predefined return code.


Comments:

This function can be called more than once on a single session to cause the creation of additional save points. These save points can be used to selectively keep or discard changes to the state of the database.

See also: JetCommitTransaction, JetRollback.