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.
|
be.SIRAPRISE.messages |
This package contains the classes that define/implement the various message types that can be sent to and received from a SIRA_PRISE server.
|
be.SIRAPRISE.util |
This package contains various utility methods.
|
Modifier and Type | Method and Description |
---|---|
DBTransaction |
DBConnection.startTransaction(boolean autoCommit,
DDLCapture ddlCapture)
Starts an anonymous transaction on the connection with the given autocommit and ddl capture settings
|
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(DDLCapture ddlCapture)
Starts an anonymous transaction on the connection with the default autocommit and transactionmode settings for transactions created on this connection, and the given ddl capture 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,
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,
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(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
|
Modifier and Type | Method and Description |
---|---|
StartTransactionMessage |
StartTransactionMessageType.message(java.lang.String userID,
boolean userAuthenticatedByClient,
java.lang.String signatureAlgorithm,
byte[] signature,
boolean readOnlyTransaction,
boolean autoCommit,
DDLCapture captureDDL)
Deprecated.
deprecated
|
StartTransactionMessage |
StartTransactionMessageTypeV1_0.message(java.lang.String userID,
boolean userAuthenticatedByClient,
java.lang.String signatureAlgorithm,
byte[] signature,
boolean readOnlyTransaction,
boolean autoCommit,
DDLCapture captureDDL,
SnapShotIsolationMode snapShotIsolationMode) |
StartTransactionMessage |
StartTransactionMessageTypeV1_2.message(java.lang.String userID,
boolean userAuthenticatedByClient,
java.lang.String signatureAlgorithm,
byte[] signature,
boolean readOnlyTransaction,
boolean autoCommit,
DDLCapture captureDDL,
SnapShotIsolationMode snapShotIsolationMode) |
abstract StartTransactionMessage |
StartTransactionMessageType.message(java.lang.String userID,
boolean userAuthenticatedByClient,
java.lang.String signatureAlgorithm,
byte[] signature,
boolean readOnlyTransaction,
boolean autoCommit,
DDLCapture captureDDL,
SnapShotIsolationMode snapShotIsolationMode)
Factory method for getting a StartTransactionMessage of this MessageType's version, holding the given data
|
StartTransactionMessage |
StartTransactionMessageTypeV1_3.message(java.lang.String userID,
boolean userAuthenticatedByClient,
java.lang.String signatureAlgorithm,
byte[] signature,
boolean readOnlyTransaction,
boolean autoCommit,
DDLCapture captureDDL,
SnapShotIsolationMode snapShotIsolationMode) |
StartTransactionMessage |
StartTransactionMessageTypeV1_1.message(java.lang.String userID,
boolean userAuthenticatedByClient,
java.lang.String signatureAlgorithm,
byte[] signature,
boolean readOnlyTransaction,
boolean autoCommit,
DDLCapture captureDDL,
SnapShotIsolationMode snapShotIsolationMode) |
Modifier and Type | Field and Description |
---|---|
static DDLCapture |
DDLCapture.OFF |
static DDLCapture |
DDLCapture.ON |
Modifier and Type | Method and Description |
---|---|
static DDLCapture |
DDLCapture.getDDLCapture(boolean b)
Gets the DDLCapture object corresponding to the specified capturing mode (ON/OFF for true/false, repsectively)
|