sqlite_next

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Seek to the next row number bool sqlite_next ( resource $result ) Object oriented style (method): bool SQLiteResult::next ( void ) bool SQLiteUnbuffered::next ( void ) 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 ob

sqlite_libversion

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Returns the version of the linked SQLite library string sqlite_libversion ( void ) Returns the version of the linked SQLite library. Returns: Returns the library version, as a string. See also: sqlite_libencoding() -

sqlite_libencoding

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Returns the encoding of the linked SQLite library string sqlite_libencoding ( void ) The SQLite library may be compiled in either ISO-8859-1 or UTF-8 compatible modes. This function allows you to determine which encoding scheme is used by your version of the library. When compiled with UTF-8 support, sqlite handles encoding and decoding of UTF-8 multi-byte character sequences, bu

sqlite_last_insert_rowid

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Returns the rowid of the most recently inserted row int sqlite_last_insert_rowid ( resource $dbhandle ) Object oriented style (method): public int SQLiteDatabase::lastInsertRowid ( void ) Returns the rowid of the row that was most recently inserted into the database dbhandle, if it was created as an auto-increment field. Tip You can create auto-increment fields in SQLite by dec

sqlite_last_error

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Returns the error code of the last error for a database int sqlite_last_error ( resource $dbhandle ) Object oriented style (method): public int SQLiteDatabase::lastError ( void ) Returns the error code from the last operation performed on dbhandle (the database handle), or 0 when no error occurred. A human readable description of the error code can be retrieved using sqlite_error_

sqlite_key

(PHP 5 >= 5.1.0 and < 5.4.0) Returns the current row index int SQLiteResult::key ( void ) Object oriented style (method): SQLiteResult::key() returns the current row index of the buffered result set result. Unlike all other SQLite functions, this function does not have a procedural version, and can only be called as a method on a SQLiteResult object. Returns: Returns the current row index

sqlite_has_prev

(PHP 5 < 5.4.0) Returns whether or not a previous row is available bool sqlite_has_prev ( resource $result ) Object oriented style (method): bool SQLiteResult::hasPrev ( void ) Find whether there are more previous rows from the given result handle. Parameters: result The SQLite result resource. This parameter is not required when using the object-oriented method. No

sqlite_has_more

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Finds whether or not more rows are available bool sqlite_has_more ( resource $result ) Finds whether more rows are available from the given result set. Parameters: result The SQLite result resource. Returns: Returns TRUE if there are more rows available from the result handle, or FALSE otherwise.

sqlite_field_name

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Returns the name of a particular field string sqlite_field_name ( resource $result, int $field_index ) Object oriented style (method): string SQLiteResult::fieldName ( int $field_index ) string SQLiteUnbuffered::fieldName ( int $field_index ) Given the ordinal column number, field_index, sqlite_field_name() returns the name of that field in the result set result.

sqlite_fetch_string

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Alias of sqlite_fetch_single() This function is an alias of: sqlite_fetch_single().