public function StatementPrefetch::__construct in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Database/StatementPrefetch.php \Drupal\Core\Database\StatementPrefetch::__construct()
File
- core/
lib/ Drupal/ Core/ Database/ StatementPrefetch.php, line 129
Class
- StatementPrefetch
- An implementation of StatementInterface that prefetches all data.
Namespace
Drupal\Core\DatabaseCode
public function __construct(\PDO $pdo_connection, Connection $connection, $query, array $driver_options = []) {
$this->pdoConnection = $pdo_connection;
$this->dbh = $connection;
$this->queryString = $query;
$this->driverOptions = $driver_options;
}