public function DatabaseTransaction::__construct

public DatabaseTransaction::__construct(DatabaseConnection $connection, $name = NULL)

File

includes/database/database.inc, line 1920
Core systems for the database layer.

Class

DatabaseTransaction
A wrapper class for creating and managing database transactions.

Code

public function __construct(DatabaseConnection $connection, $name = NULL) {
  $this->connection = $connection;
  // If there is no transaction depth, then no transaction has started. Name
  // the transaction 'drupal_transaction'.
  if (!$depth = $connection->transactionDepth()) {
    $this->name = 'drupal_transaction';
  }
  // Within transactions, savepoints are used. Each savepoint requires a
  // name. So if no name is present we need to create one.
  elseif (!$name) {
    $this->name = 'savepoint_' . $depth;
  }
  else {
    $this->name = $name;
  }
  $this->connection->pushTransaction($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/includes!database!database.inc/function/DatabaseTransaction::__construct/7.x