File
- drupal/core/lib/Drupal/Core/Database/StatementPrefetch.php, line 388
- Definition of Drupal\Core\Database\StatementPrefetch
Class
- StatementPrefetch
- An implementation of DatabaseStatementInterface that prefetches all data.
Namespace
Drupal\Core\Database
Code
public function fetchObject($class_name = NULL, $constructor_args = array()) {
if (isset($this->currentRow)) {
if (!isset($class_name)) {
$result = (object) $this->currentRow;
}
else {
$this->fetchStyle = PDO::FETCH_CLASS;
$this->fetchOptions = array(
'constructor_args' => $constructor_args,
);
$result = $this
->current();
$this->fetchStyle = $this->defaultFetchStyle;
$this->fetchOptions = $this->defaultFetchOptions;
}
$this
->next();
return $result;
}
else {
return FALSE;
}
}