borland Packages Class Hierarchy datastore.javax.sql Package
com.borland.datastore.javax.sql.XAState
Variables
This class is used internally by other com.borland
classes. You should never use this class directly.
This class provides variables which indicate the state of a XA transaction.
static final int END = 0x4Transaction has ended.
static final int FAIL = 0x10Transaction failed.
static final int HEURSITC_COMMIT = 0x20Heurstically committed transaction, which can be any prepared transaction. This state will be remembered until
XAResource.forget()
is called.
static final int HEURSITC_ROLLBACK = 0x40Heurstically rolled back transaction, which can be any prepared transaction. This state will be remembered until
XAResource.forget()
is called.
static final int PREPARE = 0x8Transaction has been prepared.
static final int START = 0x1Transaction has been started.
static final int SUSPEND = 0x2Transaction has been suspended.