Skip to content
Truncate.php 635 B
Newer Older
ayelet_Cr's avatar
ayelet_Cr committed
<?php

namespace Drupal\Core\Database\Driver\sqlite;
ayelet_Cr's avatar
ayelet_Cr committed

use Drupal\Core\Database\Query\Truncate as QueryTruncate;
ayelet_Cr's avatar
ayelet_Cr committed

/**
 * SQLite implementation of \Drupal\Core\Database\Query\Truncate.
ayelet_Cr's avatar
ayelet_Cr committed
 *
 * SQLite doesn't support TRUNCATE, but a DELETE query with no condition has
 * exactly the effect (it is implemented by DROPing the table).
 */
class Truncate extends QueryTruncate {
  public function __toString() {
    // Create a sanitized comment string to prepend to the query.
    $comments = $this->connection->makeComment($this->comments);

    return $comments . 'DELETE FROM {' . $this->connection->escapeTable($this->table) . '} ';
  }