SQLite 函数
PHP 手册

sqlite_next

SQLiteResult->next

SQLiteUnbuffered->next

(PHP 5, PECL sqlite >= 1.0.0)

sqlite_next -- SQLiteResult->next -- SQLiteUnbuffered->nextSeek to the next row number

说明

bool sqlite_next ( resource $result )

Object oriented style (method):

SQLiteResult
bool next ( void )
SQLiteUnbuffered
bool next ( void )

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

参数

result

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

返回值

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

参见


SQLite 函数
PHP 手册