function StatementPrefetch::execute

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Database/StatementPrefetch.php \Drupal\Core\Database\StatementPrefetch::execute()
  2. 10 core/lib/Drupal/Core/Database/StatementPrefetch.php \Drupal\Core\Database\StatementPrefetch::execute()

Overrides StatementInterface::execute

1 call to StatementPrefetch::execute()
Statement::execute in core/lib/Drupal/Core/Database/Driver/sqlite/Statement.php
Executes a prepared statement
1 method overrides StatementPrefetch::execute()
Statement::execute in core/lib/Drupal/Core/Database/Driver/sqlite/Statement.php
Executes a prepared statement

File

core/lib/Drupal/Core/Database/StatementPrefetch.php, line 139

Class

StatementPrefetch
An implementation of StatementInterface that prefetches all data.

Namespace

Drupal\Core\Database

Code

public function execute($args = [], $options = []) {
    if (isset($options['fetch'])) {
        if (is_string($options['fetch'])) {
            // Default to an object. Note: db fields will be added to the object
            // before the constructor is run. If you need to assign fields after
            // the constructor is run. See https://www.drupal.org/node/315092.
            $this->setFetchMode(\PDO::FETCH_CLASS, $options['fetch']);
        }
        else {
            $this->setFetchMode($options['fetch']);
        }
    }
    $logger = $this->dbh
        ->getLogger();
    if (!empty($logger)) {
        $query_start = microtime(TRUE);
    }
    // Prepare the query.
    $statement = $this->getStatement($this->queryString, $args);
    if (!$statement) {
        $this->throwPDOException();
    }
    $return = $statement->execute($args);
    if (!$return) {
        $this->throwPDOException();
    }
    if ($options['return'] == Database::RETURN_AFFECTED) {
        $this->rowCount = $statement->rowCount();
    }
    // Fetch all the data from the reply, in order to release any lock
    // as soon as possible.
    $this->data = $statement->fetchAll(\PDO::FETCH_ASSOC);
    // Destroy the statement as soon as possible. See the documentation of
    // \Drupal\Core\Database\Driver\sqlite\Statement for an explanation.
    unset($statement);
    $this->resultRowCount = count($this->data);
    if ($this->resultRowCount) {
        $this->columnNames = array_keys($this->data[0]);
    }
    else {
        $this->columnNames = [];
    }
    if (!empty($logger)) {
        $query_end = microtime(TRUE);
        $logger->log($this, $args, $query_end - $query_start);
    }
    // Initialize the first row in $this->currentRow.
    $this->next();
    return $return;
}

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