You are here

public function Connection::rollBack in Drupal driver for SQL Server and SQL Azure 3.0.x

Same name and namespace in other branches
  1. 8.2 drivers/lib/Drupal/Driver/Database/sqlsrv/Connection.php \Drupal\Driver\Database\sqlsrv\Connection::rollback()
  2. 8 drivers/lib/Drupal/Driver/Database/sqlsrv/Connection.php \Drupal\Driver\Database\sqlsrv\Connection::rollback()

Using SQL Server query syntax.

Overrides Connection::rollBack

File

drivers/lib/Drupal/Driver/Database/sqlsrv/Connection.php, line 699

Class

Connection
Sqlsvr implementation of \Drupal\Core\Database\Connection.

Namespace

Drupal\Driver\Database\sqlsrv

Code

public function rollBack($savepoint_name = 'drupal_transaction') {
  if (!$this
    ->supportsTransactions()) {
    return;
  }
  if (!$this
    ->inTransaction()) {
    throw new TransactionNoActiveException();
  }

  // A previous rollback to an earlier savepoint may mean that the savepoint
  // in question has already been accidentally committed.
  if (!isset($this->transactionLayers[$savepoint_name])) {
    throw new TransactionNoActiveException();
  }

  // We need to find the point we're rolling back to, all other savepoints
  // before are no longer needed. If we rolled back other active savepoints,
  // we need to throw an exception.
  $rolled_back_other_active_savepoints = FALSE;
  while ($savepoint = array_pop($this->transactionLayers)) {
    if ($savepoint == $savepoint_name) {

      // If it is the last the transaction in the stack, then it is not a
      // savepoint, it is the transaction itself so we will need to roll back
      // the transaction rather than a savepoint.
      if (empty($this->transactionLayers)) {
        break;
      }
      $this
        ->query('ROLLBACK TRANSACTION ' . $savepoint);
      $this
        ->popCommittableTransactions();
      if ($rolled_back_other_active_savepoints) {
        throw new TransactionOutOfOrderException();
      }
      return;
    }
    else {
      $rolled_back_other_active_savepoints = TRUE;
    }
  }

  // Notify the callbacks about the rollback.
  $callbacks = $this->rootTransactionEndCallbacks;
  $this->rootTransactionEndCallbacks = [];
  foreach ($callbacks as $callback) {
    call_user_func($callback, FALSE);
  }
  $this->connection
    ->rollBack();
  if ($rolled_back_other_active_savepoints) {
    throw new TransactionOutOfOrderException();
  }
}