public Transaction::__construct(Connection $connection, $name = NULL)
File
- core/lib/Drupal/Core/Database/Transaction.php, line 48
Class
- Transaction
- A wrapper class for creating and managing database transactions.
Namespace
Drupal\Core\Database
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | public function __construct(Connection $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); } |
Please login to continue.