Package-level declarations
Types
Represents a unit block of work that is performed on a database using a JDBC driver.
Represents the JDBC transaction manager interface, responsible for creating and managing JDBC transactions.
JdbcTransactionManager implementation registered to the provided database value db.
Properties
The JdbcTransactionManager instance that is associated with this Database.
Functions
Returns the current JDBC transaction from the thread-local stack for this manager's database, or null if none exists.
Creates a suspendable transaction at the top level with the specified transactionIsolation and readOnly settings, then calls the statement block with this transaction as its receiver and returns the result.
Creates a transaction with the specified transactionIsolation and readOnly settings, then calls the statement block with this transaction as its receiver and returns the result.
Creates a suspendable transaction with the specified transactionIsolation and readOnly settings, then calls the statement block with this transaction as its receiver and returns the result.
Creates a transaction with the specified transactionIsolation and readOnly settings, then calls the statement block with this transaction as its receiver and returns the result.