You are here

function DB_result::nextResult in Flickr API 5

Get the next result if a batch of queries was executed

Return value

bool true if a new result is available or false if not

File

phpFlickr/PEAR/DB.php, line 1269

Class

DB_result
This class implements a wrapper for a DB result set

Code

function nextResult() {
  return $this->dbh
    ->nextResult($this->result);
}