1 prefetch.inc | protected DatabaseStatementPrefetch::getStatement($query, &$args = array()) |
Grab a PDOStatement object from a given query and its arguments.
Some drivers will need to perform some preparation themselves to get the statement right.
Parameters
$query: The query.
array $args: An array of arguments.
Return value
PDOStatement: A PDOStatement object.
File
- core/
includes/ database/ prefetch.inc, line 221 - Database interface code for engines that need complete control over their result sets.
Class
- DatabaseStatementPrefetch
- An implementation of DatabaseStatementInterface that prefetches all data.
Code
protected function getStatement($query, &$args = array()) {
return $this->dbh->prepare($query);
}