You are here

public function StatementPrefetch::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Database/StatementPrefetch.php \Drupal\Core\Database\StatementPrefetch::__construct()

File

core/lib/Drupal/Core/Database/StatementPrefetch.php, line 134
Contains \Drupal\Core\Database\StatementPrefetch.

Class

StatementPrefetch
An implementation of StatementInterface that prefetches all data.

Namespace

Drupal\Core\Database

Code

public function __construct(\PDO $pdo_connection, Connection $connection, $query, array $driver_options = array()) {
  $this->pdoConnection = $pdo_connection;
  $this->dbh = $connection;
  $this->queryString = $query;
  $this->driverOptions = $driver_options;
}