W3cubDocs

/Drupal 8

public function Transaction::rollback

public Transaction::rollback()

Rolls back the current transaction.

This is just a wrapper method to rollback whatever transaction stack we are currently in, which is managed by the connection object itself. Note that logging (preferable with watchdog_exception()) needs to happen after a transaction has been rolled back or the log messages will be rolled back too.

See also

\Drupal\Core\Database\Connection::rollback()

watchdog_exception()

File

core/lib/Drupal/Core/Database/Transaction.php, line 92

Class

Transaction
A wrapper class for creating and managing database transactions.

Namespace

Drupal\Core\Database

Code

public function rollback() {
  $this->rolledBack = TRUE;
  $this->connection->rollback($this->name);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Database!Transaction.php/function/Transaction::rollback/8.1.x