public function DatabaseConnection::supportsTransactions

Determines if this driver supports transactions.

Return value

TRUE if this connection supports transactions, FALSE otherwise.

12 calls to DatabaseConnection::supportsTransactions()
DatabaseConnection::popTransaction in drupal-7.x/includes/database/database.inc
Decreases the depth of transaction nesting.
DatabaseConnection::popTransaction in drupal-7.x/includes/database/database.inc
Decreases the depth of transaction nesting.
DatabaseConnection::pushTransaction in drupal-7.x/includes/database/database.inc
Increases the depth of transaction nesting.
DatabaseConnection::pushTransaction in drupal-7.x/includes/database/database.inc
Increases the depth of transaction nesting.
DatabaseConnection::rollback in drupal-7.x/includes/database/database.inc
Rolls back the transaction entirely or to a named savepoint.

... See full list

Archivo

drupal-7.x/includes/database/database.inc, line 1238
Core systems for the database layer.

Class

DatabaseConnection
Base Database API class.

Código

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