public function QPDrupalDB::nextRow in QueryPath 6
Same name and namespace in other branches
- 7.3 querypath.classes.inc \QPDrupalDB::nextRow()
- 7.2 querypath.classes.inc \QPDrupalDB::nextRow()
Fetch the next row from the current result set.
File
- ./
querypath.classes.inc, line 78 - Classes that are part of the QueryPath module.
Class
- QPDrupalDB
- Add Drupal database support to QueryPath.
Code
public function nextRow() {
$this->row = db_fetch_array($this->result);
return $this->qp;
}