Method Summary |
|
Pattern | getBeginPattern() Pattern maching a transaction BEGIN that should be mapped on a
setAutocommit(false) call. |
Pattern | getCommitPattern() Pattern maching a transaction COMMIT that should be mapped on a
connection.commit() call. |
Pattern | getReleaseSavepointPattern() Pattern maching a RELEASE SAVEPOINT statememt that should be mapped on a
connection.releaseSavepoint(Savepoint) call. |
Pattern | getRollbackPattern() Pattern maching a transaction ROLLBACK that should be mapped on a
connection.rollback() call. |
Pattern | getRollbackToSavepointPattern() Pattern maching a transaction ROLLBACK TO SAVEPOINT that should be mapped
on a connection.rollback(Savepoint) call. |
Pattern | getSetAutocommit1Pattern() Pattern maching a transaction SET AUTOCOMMIT=1 that should be mapped on a
connection.setAutocommit(true) call. |
Pattern | getSetIsolationLevelPattern() Pattern maching a transaction isolation level setting that should be mapped
on a connection.setIsolationLevel() call. |
Pattern | getSetReadOnlyTransactionPattern() Pattern maching a transaction read-only setting that should be mapped on a
connection.setReadOnly() call. |
Pattern | getSetSavepointPattern() Pattern maching a transaction SET SAVEPOINT that should be mapped on a
connection.setSavepoint(Savepoint) call. |