public function Connection::supportsTransactions

Determines if this driver supports transactions.

Return value

TRUE if this connection supports transactions, FALSE otherwise.

6 calls to Connection::supportsTransactions()
Connection::popTransaction in drupal/core/lib/Drupal/Core/Database/Connection.php
Decreases the depth of transaction nesting.
Connection::popTransaction in drupal/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php
Decreases the depth of transaction nesting.
Connection::pushTransaction in drupal/core/lib/Drupal/Core/Database/Connection.php
Increases the depth of transaction nesting.
Connection::pushTransaction in drupal/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php
Increases the depth of transaction nesting.
Connection::rollback in drupal/core/lib/Drupal/Core/Database/Connection.php
Rolls back the transaction entirely or to a named savepoint.

... See full list

File

drupal/core/lib/Drupal/Core/Database/Connection.php, line 1113
Definition of Drupal\Core\Database\Connection

Class

Connection
Base Database API class.

Namespace

Drupal\Core\Database

Code

public function supportsTransactions() {
  return $this->transactionSupport;
}