JavaScript Editor Javascript debugger     Website design 


sqlite_next

Seek to the next row number (PHP 5, PECL sqlite:1.0-1.0.3)
bool sqlite_next ( resource result )

Object oriented style (method):

SQLiteResult {
  bool next();
}
SQLiteUnbuffered {
  bool next();
}

sqlite_next() advances the result handle result to the next row.

Parameters

result

The SQLite result resource. This parameter is not required when using the object-oriented method.

Return Values

Returns TRUE on success, or FALSE if there are no more rows.