sqlite_udf_decode_binary

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Decode binary data passed as parameters to an UDF string sqlite_udf_decode_binary ( string $data ) Decodes binary data passed as parameters to a UDF. You must call this function on parameters passed to your UDF if you need them to handle binary data, as the binary encoding employed by PHP will obscure the content and of the parameter in its natural, non-coded form. PHP does not

sqlite_single_query

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.1) Executes a query and returns either an array for one single column or the value of the first row array sqlite_single_query ( resource $db, string $query [, bool $first_row_only [, bool $decode_binary ]] ) Object oriented style (method): public array SQLiteDatabase::singleQuery ( string $query [, bool $first_row_only [, bool $decode_binary ]] )

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_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_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

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_num_rows

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Returns the number of rows in a buffered result set int sqlite_num_rows ( resource $result ) Object oriented style (method): int SQLiteResult::numRows ( void ) Returns the number of rows in the buffered result set. Parameters: result The SQLite result resource. This parameter is not required when using the object-oriented metho

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