maxdb_client_encoding

(PECL maxdb 1.0) Alias of maxdb_character_set_name() This function is an alias of: maxdb_character_set_name(). This function alias is deprecated and only exists for backwards compatibility reasons. The use of this function is not recommended, as it may be removed from PHP in the future.

maxdb_bind_param

(PECL maxdb 1.0) Alias of maxdb_stmt_bind_param() This function is an alias of: maxdb_stmt_bind_param() This function alias is deprecated and only exists for backwards compatibility reasons. The use of this function is not recommended, as it may be removed from PHP in the future.

maxdb_bind_result

(PECL maxdb 1.0) Alias of maxdb_stmt_bind_result() This function is an alias of: maxdb_stmt_bind_result(). This function alias is deprecated and only exists for backwards compatibility reasons. The use of this function is not recommended, as it may be removed from PHP in the future.

ingres_set_environment

(PECL ingres >= 1.2.0) Set environment features controlling output options bool ingres_set_environment ( resource $link, array $options ) ingres_set_environment() is called to set environmental options that affect the output of certain values from Ingres, such as the timezone, date format, decimal character separator, and float precision. Parameters: link The connectio

ingres_result_seek

(PECL ingres >= 2.1.0) Set the row position before fetching data bool ingres_result_seek ( resource $result, int $position ) This function is used to position the cursor associated with the result resource before issuing a fetch. If ingres.array_index_start is set to 0 then the first row is 0 else it is 1. ingres_result_seek() can be used only with queries that make use of scrollable cursors. It cannot be used with ingres

ingres_rollback

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0) Roll back a transaction bool ingres_rollback ( resource $link ) ingres_rollback() rolls back the currently open transaction, actually cancelling all changes made to the database during the transaction. This closes the transaction. A new transaction can be opened by sending a query with ingres_query(). Parameters: link

ingres_query

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0) Send an SQL query to Ingres mixed ingres_query ( resource $link, string $query [, array $params [, string $types ]] ) ingres_query() sends the given query to the Ingres server. The query becomes part of the currently open transaction. If there is no open transaction, ingres_query() opens a new transaction. To close the transaction, you can call either ingres_c

ingres_prepare

(PECL ingres >= 1.1.0) Prepare a query for later execution mixed ingres_prepare ( resource $link, string $query ) Prepares a query for execution by ingres_execute(). The query becomes part of the currently open transaction. If there is no open transaction, ingres_query() opens a new transaction. To close the transaction, you can call either ingres_commit() to commit the changes made to the database or ingres_rollback()

ingres_next_error

(PECL ingres >= 2.0.0) Get the next Ingres error bool ingres_next_error ([ resource $link ] ) Get the next Ingres error for the last executed query. Each call to ingres_next_error() can be followed by a call to ingres_errno(), ingres_error() or ingres_errsqlstate() to get the respective error number, error text, or SQL STATE. While ingres_next_error() returns TRUE, there are more errors to fetch. Paramete

ingres_num_rows

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0) Get the number of rows affected or returned by a query int ingres_num_rows ( resource $result ) This function primarily is meant to get the number of rows modified in the database. However, it can be used to retrieve the number of rows to fetch for a SELECT statement. Note: If scrollable cursors are disabled and this function is called before using ingres_fe