Package | Description |
---|---|
be.SIRAPRISE.client |
This package contains all the classes and interfaces that can be useful on the client side of an application involving SIRA_PRISE.
|
Modifier and Type | Field and Description |
---|---|
static TransactionMode |
TransactionMode.READONLY |
static TransactionMode |
TransactionMode.UPDATE |
Modifier and Type | Method and Description |
---|---|
static TransactionMode |
TransactionMode.getTransactionMode(boolean readOnly)
Gets The appropriate TransactionMode object for the given read-only setting
|
Modifier and Type | Method and Description |
---|---|
DBTransaction |
DBConnection.startTransaction(boolean autoCommit,
TransactionMode transactionMode)
Starts an anonymous transaction in the given transaction mode on the connection with the given autocommit setting
|
DBTransaction |
DBConnection.startTransaction(boolean autoCommit,
TransactionMode transactionMode,
DDLCapture ddlCapture)
Starts an anonymous transaction in the given transaction mode on the connection with the given autocommit setting
|
DBTransaction |
DBConnection.startTransaction(boolean autoCommit,
TransactionMode transactionMode,
DDLCapture ddlCapture,
SnapShotIsolationMode snapShotIsolationMode)
Starts an anonymous transaction in the given transaction mode on the connection with the given autocommit setting
|
DBTransaction |
DBConnection.startTransaction(boolean autoCommit,
TransactionMode transactionMode,
SnapShotIsolationMode snapShotIsolationMode)
Starts an anonymous transaction in the given transaction mode on the connection with the given autocommit setting
|
DBTransaction |
DBConnection.startTransaction(java.lang.String userID,
boolean userAuthenticatedByClient,
java.lang.String signatureAlgorithm,
byte[] signature,
boolean autoCommit,
TransactionMode transactionMode)
Starts a transaction on the connection with the given autoCommit setting
|
DBTransaction |
DBConnection.startTransaction(java.lang.String userID,
boolean userAuthenticatedByClient,
java.lang.String signatureAlgorithm,
byte[] signature,
boolean autoCommit,
TransactionMode transactionMode,
DDLCapture captureDDL)
Starts a transaction on the connection with the given autoCommit setting
|
DBTransaction |
DBConnection.startTransaction(java.lang.String userID,
boolean userAuthenticatedByClient,
java.lang.String signatureAlgorithm,
byte[] signature,
boolean autoCommit,
TransactionMode transactionMode,
DDLCapture captureDDL,
SnapShotIsolationMode snapShotIsolationMode)
Starts a transaction on the connection with the given autoCommit setting
|
DBTransaction |
DBConnection.startTransaction(java.lang.String userID,
boolean userAuthenticatedByClient,
java.lang.String signatureAlgorithm,
byte[] signature,
boolean autoCommit,
TransactionMode transactionMode,
SnapShotIsolationMode snapShotIsolationMode)
Starts a transaction on the connection with the given autoCommit setting
|
DBTransaction |
DBConnection.startTransaction(java.lang.String userID,
boolean userAuthenticatedByClient,
java.lang.String signatureAlgorithm,
byte[] signature,
TransactionMode transactionMode)
Starts a transaction on the connection with the default autocommit setting for transactions created on this connection
|
DBTransaction |
DBConnection.startTransaction(java.lang.String userID,
boolean userAuthenticatedByClient,
java.lang.String signatureAlgorithm,
byte[] signature,
TransactionMode transactionMode,
DDLCapture ddlCapture)
Starts a transaction on the connection with the default autocommit setting for transactions created on this connection
|
DBTransaction |
DBConnection.startTransaction(java.lang.String userID,
Signer userIDSigner,
boolean autoCommit,
TransactionMode transactionMode)
Starts a transaction in the given transaction mode on the connection for the named user and with the default autocommit setting for transactions created on this connection.
|
DBTransaction |
DBConnection.startTransaction(java.lang.String userID,
Signer userIDSigner,
boolean autoCommit,
TransactionMode transactionMode,
SnapShotIsolationMode snapShotIsolationMode)
Starts a transaction in the given transaction mode on the connection for the named user and with the default autocommit setting for transactions created on this connection.
|
DBTransaction |
DBConnection.startTransaction(java.lang.String userID,
Signer userIDSigner,
TransactionMode transactionMode)
Starts a transaction in the given read-only mode on the connection for the named user and with the default autocommit setting for transactions created on this connection.
|
DBTransaction |
DBConnection.startTransaction(java.lang.String userID,
Signer userIDSigner,
TransactionMode transactionMode,
SnapShotIsolationMode snapShotIsolationMode)
Starts a transaction in the given read-only mode on the connection for the named user and with the default autocommit setting for transactions created on this connection.
|
DBTransaction |
DBConnection.startTransaction(TransactionMode transactionMode)
Starts an anonymous transaction in the given transaction mode on the connection with the default autocommit setting for transactions created on this connection
|
DBTransaction |
DBConnection.startTransaction(TransactionMode transactionMode,
DDLCapture ddlCapture)
Starts an anonymous transaction in the given transaction mode on the connection with the default autocommit setting for transactions created on this connection
|
DBTransaction |
DBConnection.startTransaction(TransactionMode transactionMode,
DDLCapture ddlCapture,
SnapShotIsolationMode snapShotIsolationMode)
Starts an anonymous transaction in the given transaction mode on the connection with the default autocommit setting for transactions created on this connection
|
DBTransaction |
DBConnection.startTransaction(TransactionMode transactionMode,
SnapShotIsolationMode snapShotIsolationMode)
Starts an anonymous transaction in the given transaction mode on the connection with the default autocommit setting for transactions created on this connection
|