sqlite_unbuffered_query

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Execute a query that does not prefetch and buffer all data resource sqlite_unbuffered_query ( resource $dbhandle, string $query [, int $result_type = SQLITE_BOTH [, string &$error_msg ]] ) resource sqlite_unbuffered_query ( string $query , resource $dbhandle [, int $result_type = SQLITE_BOTH [, string &$error_msg ]] ) Object oriented style (method): public SQLiteUnbuffere

sqlite_valid

(PHP 5 < 5.4.0) Returns whether more rows are available bool sqlite_valid ( resource $result ) Object oriented style (method): bool SQLiteResult::valid ( void ) bool SQLiteUnbuffered::valid ( void ) Finds whether more rows are available from the given result handle. Parameters: result The SQLite result resource. This parameter is not required when using the object-or

sqlite_seek

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Seek to a particular row number of a buffered result set bool sqlite_seek ( resource $result, int $rownum ) Object oriented style (method): bool SQLiteResult::seek ( int $rownum ) sqlite_seek() seeks to the row given by the parameter rownum. Parameters: result The SQLite result resource. This parameter is not required when usin

sqlite_rewind

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Seek to the first row number bool sqlite_rewind ( resource $result ) Object oriented style (method): bool SQLiteResult::rewind ( void ) sqlite_rewind() seeks back to the first row in the given result set. Parameters: result The SQLite result resource. This parameter is not required when using the object-oriented method. Note:

sqlite_query

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Executes a query against a given database and returns a result handle resource sqlite_query ( resource $dbhandle, string $query [, int $result_type = SQLITE_BOTH [, string &$error_msg ]] ) resource sqlite_query ( string $query , resource $dbhandle [, int $result_type = SQLITE_BOTH [, string &$error_msg ]] ) Object oriented style (method): public SQLiteResult SQLiteDatabas

sqlite_num_fields

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Returns the number of fields in a result set int sqlite_num_fields ( resource $result ) Object oriented style (method): int SQLiteResult::numFields ( void ) int SQLiteUnbuffered::numFields ( void ) Returns the number of fields in the result set. Parameters: result The SQLite result resource. This parameter is not required when

sqlite_prev

(PHP 5 < 5.4.0) Seek to the previous row number of a result set bool sqlite_prev ( resource $result ) Object oriented style (method): bool SQLiteResult::prev ( void ) sqlite_prev() seeks back the result handle to the previous row. Parameters: result The SQLite result resource. This parameter is not required when using the object-oriented method. Note: This function

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_open

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Opens an SQLite database and create the database if it does not exist resource sqlite_open ( string $filename [, int $mode = 0666 [, string &$error_message ]] ) Object oriented style (constructor): final public SQLiteDatabase::__construct ( string $filename [, int $mode = 0666 [, string &$error_message ]] ) Opens an SQLite database or creates the database if it does not e

sqlite_popen

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Opens a persistent handle to an SQLite database and create the database if it does not exist resource sqlite_popen ( string $filename [, int $mode = 0666 [, string &$error_message ]] ) This function behaves identically to sqlite_open() except that is uses the persistent resource mechanism of PHP. For information about the meaning of the parameters, read the sqlite_open() man