Transactions
Last updated
Was this helpful?
Last updated
Was this helpful?
Transactions are created using DataSource
or EntityManager
. Examples:
or
Everything you want to run in a transaction must be executed in a callback:
The most important restriction when working in a transaction is to ALWAYS use the provided instance of entity manager - transactionalEntityManager
in this example. DO NOT USE GLOBAL ENTITY MANAGER. All operations MUST be executed using the provided transactional entity manager.
Specifying the isolation level for the transaction can be done by supplying it as the first parameter:
Isolation level implementations are not agnostic across all databases.
The following database drivers support the standard isolation levels (READ UNCOMMITTED
, READ COMMITTED
, REPEATABLE READ
, SERIALIZABLE
):
MySQL
Postgres
SQL Server
SQLite defaults transactions to SERIALIZABLE
, but if shared cache mode is enabled, a transaction can use the READ UNCOMMITTED
isolation level.
Oracle only supports the READ COMMITTED
and SERIALIZABLE
isolation levels.
QueryRunner
to create and control state of single database connectionQueryRunner
provides a single database connection. Transactions are organized using query runners. Single transactions can only be established on a single query runner. You can manually create a query runner instance and use it to manually control transaction state. Example:
There are 3 methods to control transactions in QueryRunner
:
startTransaction
- starts a new transaction inside the query runner instance.
commitTransaction
- commits all changes made using the query runner instance.
rollbackTransaction
- rolls all changes made using the query runner instance back.
Learn more about .