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,
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,
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,
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,
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,
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
|
Modifier and Type | Method and Description |
---|---|
SnapShotIsolationMode |
StartTransactionMessage.getSnapShotIsolationMode()
Gets the snapshot isolation mode that this readonly transaction is to run under (snapshot isolation does not apply to update transactions.
|
Modifier and Type | Method and Description |
---|---|
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 | Method and Description |
---|---|
static SnapShotIsolationMode |
SnapShotIsolationMode.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SnapShotIsolationMode[] |
SnapShotIsolationMode.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|