You are here

public function Truncate::__toString in Drupal driver for SQL Server and SQL Azure 8

Same name and namespace in other branches
  1. 8.2 drivers/lib/Drupal/Driver/Database/sqlsrv/Truncate.php \Drupal\Driver\Database\sqlsrv\Truncate::__toString()
  2. 3.0.x drivers/lib/Drupal/Driver/Database/sqlsrv/Truncate.php \Drupal\Driver\Database\sqlsrv\Truncate::__toString()

Implements PHP magic __toString method to convert the query to a string.

Return value

string The prepared statement.

Overrides Truncate::__toString

File

drivers/lib/Drupal/Driver/Database/sqlsrv/Truncate.php, line 24
Definition of Drupal\Driver\Database\sqlsrv\Truncate

Class

Truncate

Namespace

Drupal\Driver\Database\sqlsrv

Code

public function __toString() {

  // Create a sanitized comment string to prepend to the query.
  $comments = $this->connection
    ->makeComment($this->comments);

  // In most cases, TRUNCATE is not a transaction safe statement as it is a
  // DDL statement which results in an implicit COMMIT. When we are in a
  // transaction, fallback to the slower, but transactional, DELETE.
  // PostgreSQL also locks the entire table for a TRUNCATE strongly reducing
  // the concurrency with other transactions.
  if ($this->connection
    ->inTransaction()) {
    return $comments . 'DELETE FROM {' . $this->connection
      ->escapeTable($this->table) . '}';
  }
  else {
    return $comments . 'TRUNCATE TABLE {' . $this->connection
      ->escapeTable($this->table) . '} ';
  }
}