function Connection::doCommit
Same name in this branch
- 9 core/modules/mysql/src/Driver/Database/mysql/Connection.php \Drupal\mysql\Driver\Database\mysql\Connection::doCommit()
Do the actual commit, invoke post-commit callbacks.
@internal
File
-
core/
lib/ Drupal/ Core/ Database/ Connection.php, line 1738
Class
- Connection
- Base Database API class.
Namespace
Drupal\Core\DatabaseCode
protected function doCommit() {
$success = $this->connection
->commit();
if (!empty($this->rootTransactionEndCallbacks)) {
$callbacks = $this->rootTransactionEndCallbacks;
$this->rootTransactionEndCallbacks = [];
foreach ($callbacks as $callback) {
call_user_func($callback, $success);
}
}
if (!$success) {
throw new TransactionCommitFailedException();
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.