Truncate.php

Same filename in this branch
  1. 11.x core/modules/sqlite/src/Driver/Database/sqlite/Truncate.php
  2. 11.x core/modules/mysql/src/Driver/Database/mysql/Truncate.php
  3. 11.x core/modules/pgsql/src/Driver/Database/pgsql/Truncate.php
  4. 11.x core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Truncate.php
Same filename and directory in other branches
  1. 9 core/modules/sqlite/src/Driver/Database/sqlite/Truncate.php
  2. 9 core/modules/mysql/src/Driver/Database/mysql/Truncate.php
  3. 9 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Truncate.php
  4. 9 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysqlDeprecatedVersion/Truncate.php
  5. 9 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Truncate.php
  6. 9 core/modules/pgsql/src/Driver/Database/pgsql/Truncate.php
  7. 9 core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Truncate.php
  8. 9 core/lib/Drupal/Core/Database/Driver/sqlite/Truncate.php
  9. 9 core/lib/Drupal/Core/Database/Driver/pgsql/Truncate.php
  10. 9 core/lib/Drupal/Core/Database/Query/Truncate.php
  11. 8.9.x core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Truncate.php
  12. 8.9.x core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Truncate.php
  13. 8.9.x core/lib/Drupal/Core/Database/Driver/sqlite/Truncate.php
  14. 8.9.x core/lib/Drupal/Core/Database/Driver/mysql/Truncate.php
  15. 8.9.x core/lib/Drupal/Core/Database/Driver/pgsql/Truncate.php
  16. 8.9.x core/lib/Drupal/Core/Database/Query/Truncate.php
  17. 10 core/modules/sqlite/src/Driver/Database/sqlite/Truncate.php
  18. 10 core/modules/mysql/src/Driver/Database/mysql/Truncate.php
  19. 10 core/modules/pgsql/src/Driver/Database/pgsql/Truncate.php
  20. 10 core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Truncate.php
  21. 10 core/lib/Drupal/Core/Database/Driver/sqlite/Truncate.php
  22. 10 core/lib/Drupal/Core/Database/Driver/pgsql/Truncate.php
  23. 10 core/lib/Drupal/Core/Database/Query/Truncate.php

Namespace

Drupal\Core\Database\Query

File

core/lib/Drupal/Core/Database/Query/Truncate.php

View source
<?php

namespace Drupal\Core\Database\Query;

use Drupal\Core\Database\Connection;

/**
 * General class for an abstracted TRUNCATE operation.
 */
class Truncate extends Query {
    
    /**
     * The table to truncate.
     *
     * @var string
     */
    protected $table;
    
    /**
     * Constructs a Truncate query object.
     *
     * @param \Drupal\Core\Database\Connection $connection
     *   A Connection object.
     * @param string $table
     *   Name of the table to associate with this query.
     * @param array $options
     *   Array of database options.
     */
    public function __construct(Connection $connection, $table, array $options = []) {
        parent::__construct($connection, $options);
        $this->table = $table;
    }
    
    /**
     * Executes the TRUNCATE query.
     *
     * @return int|null
     *   Return value is dependent on whether the executed SQL statement is a
     *   TRUNCATE or a DELETE. TRUNCATE is DDL and no information on affected
     *   rows is available. DELETE is DML and will return the number of affected
     *   rows. In general, do not rely on the value returned by this method in
     *   calling code.
     *
     * @see https://learnsql.com/blog/difference-between-truncate-delete-and-drop-table-in-sql
     */
    public function execute() {
        $stmt = $this->connection
            ->prepareStatement((string) $this, $this->queryOptions, TRUE);
        try {
            $stmt->execute([], $this->queryOptions);
            return $stmt->rowCount();
        } catch (\Exception $e) {
            $this->connection
                ->exceptionHandler()
                ->handleExecutionException($e, $stmt, [], $this->queryOptions);
        }
        return NULL;
    }
    
    /**
     * Implements PHP magic __toString method to convert the query to a string.
     *
     * @return string
     *   The prepared statement.
     */
    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 {' . $this->connection
                ->escapeTable($this->table) . '} ';
        }
    }

}

Classes

Title Deprecated Summary
Truncate General class for an abstracted TRUNCATE operation.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.