function StatementPrefetch::getStatement
Same name in other branches
- 9 core/lib/Drupal/Core/Database/StatementPrefetch.php \Drupal\Core\Database\StatementPrefetch::getStatement()
- 8.9.x core/lib/Drupal/Core/Database/StatementPrefetch.php \Drupal\Core\Database\StatementPrefetch::getStatement()
Grab a PDOStatement object from a given query and its arguments.
Some drivers (including SQLite) will need to perform some preparation themselves to get the statement right.
Parameters
$query: The query.
array|null $args: An array of arguments. This can be NULL.
Return value
\PDOStatement A PDOStatement object.
1 call to StatementPrefetch::getStatement()
- StatementPrefetch::execute in core/
lib/ Drupal/ Core/ Database/ StatementPrefetch.php - Executes a prepared statement.
File
-
core/
lib/ Drupal/ Core/ Database/ StatementPrefetch.php, line 270
Class
- StatementPrefetch
- An implementation of StatementInterface that pre-fetches all data.
Namespace
Drupal\Core\DatabaseCode
protected function getStatement($query, &$args = []) {
return $this->connection
->prepare($query, $this->driverOptions);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.