sqlite_create_function

(PHP 5 < 5.4.0, sqlite >= 1.0.0) Registers a "regular" User Defined Function for use in SQL statements void sqlite_create_function ( resource $dbhandle, string $function_name, callable $callback [, int $num_args = -1 ] ) Object oriented style (method): public void SQLiteDatabase::createFunction ( string $function_name , callable $callback [, int $num_args = -1 ] ) sqlite_create_function() allows you to register a

sqlite_create_aggregate

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Register an aggregating UDF for use in SQL statements void sqlite_create_aggregate ( resource $dbhandle, string $function_name, callable $step_func, callable $finalize_func [, int $num_args = -1 ] ) Object oriented style (method): public void SQLiteDatabase::createAggregate ( string $function_name , callable $step_func , callable $finalize_func [, int $num_args = -1 ] ) sqlite_c

sqlite_column

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Fetches a column from the current row of a result set mixed sqlite_column ( resource $result, mixed $index_or_name [, bool $decode_binary = true ] ) mixed SQLiteResult::column ( mixed $index_or_name [, bool $decode_binary = true ] ) mixed SQLiteUnbuffered::column ( mixed $index_or_name [, bool $decode_binary = true ] ) Fetches the value of a column named index_or_name (if it is

sqlite_close

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Closes an open SQLite database void sqlite_close ( resource $dbhandle ) Closes the given db_handle database handle. If the database was persistent, it will be closed and removed from the persistent list. Parameters: dbhandle The SQLite Database resource; returned from sqlite_open() when used procedurally. Re

sqlite_changes

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Returns the number of rows that were changed by the most recent SQL statement int sqlite_changes ( resource $dbhandle ) Object oriented style (method): public int SQLiteDatabase::changes ( void ) Returns the numbers of rows that were changed by the most recent SQL statement executed against the dbhandle database handle. Parameters: dbhand

sqlite_busy_timeout

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Set busy timeout duration, or disable busy handlers void sqlite_busy_timeout ( resource $dbhandle, int $milliseconds ) Object oriented style (method): public void SQLiteDatabase::busyTimeout ( int $milliseconds ) Set the maximum time, in milliseconds, that SQLite will wait for a dbhandle to become ready for use. Parameters: dbhandle

sqlite_array_query

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Execute a query against a given database and returns an array array sqlite_array_query ( resource $dbhandle, string $query [, int $result_type = SQLITE_BOTH [, bool $decode_binary = true ]] ) array sqlite_array_query ( string $query , resource $dbhandle [, int $result_type = SQLITE_BOTH [, bool $decode_binary = true ]] ) Object oriented style (method): public array SQLiteDatabas

pg_version

(PHP 5, PHP 7) Returns an array with client, protocol and server version (when available) array pg_version ([ resource $connection ] ) pg_version() returns an array with the client, protocol and server version. Protocol and server versions are only available if PHP was compiled with PostgreSQL 7.4 or later. For more detailed server information, use pg_parameter_status(). Parameters:

pg_update

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Update table mixed pg_update ( resource $connection, string $table_name, array $data, array $condition [, int $options = PGSQL_DML_EXEC ] ) pg_update() updates records that matches condition with data. If options is specified, pg_convert() is applied to data with specified options. Parameters: connection PostgreSQL database connection

pg_untrace

(PHP 4 >= 4.0.1, PHP 5, PHP 7) Disable tracing of a PostgreSQL connection bool pg_untrace ([ resource $connection ] ) Stop tracing started by pg_trace(). Parameters: connection PostgreSQL database connection resource. When connection is not present, the default connection is used. The default connection is the last connection made by pg_connect() or pg_pconnect().