1 prefetch.inc | public DatabaseStatementPrefetch::fetchColumn($index = 0) |
File
- core/
includes/ database/ prefetch.inc, line 379 - 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 fetchColumn($index = 0) {
if (isset($this->currentRow) && isset($this->columnNames[$index])) {
// We grab the value directly from $this->data, and format it.
$return = $this->currentRow[$this->columnNames[$index]];
$this->next();
return $return;
}
else {
return FALSE;
}
}