Documentation

MySQLTransaction implements ITransaction

Handles begin transaction, commit and rollback calls for a list of database connections.

Work is grouped by database connection id. Multiple database connections may be used.

Transactions are executed in the order they were received. Caveat: When multiple database connections are used, work is grouped by connection. Each encountered database connection will execute all related work in the order they were entered before moving on to the next database connection and then executing that connections work and so on.

Table of Contents

$units
$executeOrder
__construct() mixed
beginTransaction() Begins a transaction void
rollBack() Rolls back an uncommitted transaction void
commit() Commits a transaction after beginTransaction has been called void
run() Executes the code that is part of the transaction void

Properties

Methods

commit()

Commits a transaction after beginTransaction has been called

public commit( ) : void
Tags
throws
Exception

run()

Executes the code that is part of the transaction

public run( ) : void
Tags
throws
Exception

Search results