Methods |
public
|
transaction<TReturn is mixed>(Closure(static): TReturn $callback, int $attempts = 1): TReturn
|
#
|
protected
|
handleTransactionException(Throwable $e, int $currentAttempt, int $maxAttempts): void
Handle an exception encountered when running a transacted statement.
Handle an exception encountered when running a transacted statement.
Throws
|
#
|
public
|
beginTransaction(): void
Start a new database transaction.
Start a new database transaction.
Throws
|
#
|
protected
|
createTransaction(): void
Create a transaction within the database.
Create a transaction within the database.
Throws
|
#
|
protected
|
createSavepoint(): void
Create a save point within the database.
Create a save point within the database.
Throws
|
#
|
protected
|
handleBeginTransactionException(Throwable $e): void
Handle an exception from a transaction beginning.
Handle an exception from a transaction beginning.
Throws
|
#
|
public
|
commit(): void
Commit the active database transaction.
Commit the active database transaction.
Throws
|
#
|
protected
|
handleCommitTransactionException(Throwable $e, int $currentAttempt, int $maxAttempts): void
Handle an exception encountered when committing a transaction.
Handle an exception encountered when committing a transaction.
Throws
|
#
|
public
|
rollBack(int|null $toLevel = null): void
Rollback the active database transaction.
Rollback the active database transaction.
Throws
|
#
|
protected
|
performRollBack(int $toLevel): void
Perform a rollback within the database.
Perform a rollback within the database.
Throws
|
#
|
protected
|
handleRollBackException(Throwable $e): void
Handle an exception from a rollback.
Handle an exception from a rollback.
Throws
|
#
|
public
|
transactionLevel(): int
Get the number of active transactions.
Get the number of active transactions.
|
#
|
public
|
afterCommit(callable $callback): void
Execute the callback after a transaction commits.
Execute the callback after a transaction commits.
Throws
|
#
|