Group: Extensible Storage Engine (ESE, Jet Blue) - Library: esent
Extensible Storage Engine class library
JET_ERR JET_API JetRollback(
__in JET_SESID sesid,
__in JET_GRBIT grbit
);
DECLARE INTEGER JetRollback IN esent;
INTEGER sesid,;
INTEGER grbit
sesid The session to use for this call.
grbit A group of bits that contain the options to be used for this call.
Returns the JET_ERR datatype with a predefined return code.
On success, any changes made to the database during the current save point for the given session will be undone and that save point will be ended. If the last save point for the session was ended then the session will exit the transaction.
On failure, the transactional state of the session will remain unchanged. No change to the database state will occur. A failure during rollback is considered to be a catastrophic database error.
See also: JetBeginTransaction, JetCommitTransaction.