You are here

public function QPDrupalDB::nextRow in QueryPath 6

Same name and namespace in other branches
  1. 7.3 querypath.classes.inc \QPDrupalDB::nextRow()
  2. 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;
}