Group: Extensible Storage Engine (ESE, Jet Blue) - Library: esent
Ends the session, and cleans up and deallocates any resources associated with the specified session.
Extensible Storage Engine class library
JET_ERR JET_API JetEndSession(
__in JET_SESID sesid,
__in JET_GRBIT grbit
); DECLARE INTEGER JetEndSession IN esent;
INTEGER sesid,;
INTEGER grbit sesid The session to end. Associated resources are released when the session ends.
grbit Reserved.
This function returns the JET_ERR datatype with a predefined return code.
This API will rollback any open transactions (not committed to level 0). Also all cursors associated with this session, and any sort tables that have been created or opened will be cleaned up.
See also: JetBeginSession.
Home