| 1 prefetch.inc |
public DatabaseStatementPrefetch::fetchAll($fetch_style = NULL, $fetch_column = NULL, $constructor_args = array()) |
File
- core/includes/database/prefetch.inc, line 475
- Database interface code for engines that need complete control over their
result sets.
Class
- DatabaseStatementPrefetch
- An implementation of DatabaseStatementInterface that prefetches all data.
Code
public function fetchAll($fetch_style = NULL, $fetch_column = NULL, $constructor_args = array()) {
$this->fetchStyle = isset($fetch_style) ? $fetch_style : $this->defaultFetchStyle;
$this->fetchOptions = $this->defaultFetchOptions;
if (isset($fetch_column)) {
$this->fetchOptions['column'] = $fetch_column;
}
if (isset($constructor_args)) {
$this->fetchOptions['constructor_args'] = $constructor_args;
}
$result = array();
while (isset($this->currentRow)) {
$result[] = $this->current();
$this->next();
}
$this->fetchStyle = $this->defaultFetchStyle;
$this->fetchOptions = $this->defaultFetchOptions;
return $result;
}