maxdb_autocommit

(PECL maxdb >= 1.0) Turns on or off auto-commiting database modifications bool maxdb_autocommit ( resource $link, bool $mode ) Procedural style Object oriented style bool maxdb::auto_commit ( bool $mode ) maxdb_autocommit() is used to turn on or off auto-commit mode on queries for the database connection represented by the link resource. Returns: Returns TRUE on success or FALSE on failure.

maxdb_affected_rows

(PECL maxdb >= 1.0) Gets the number of affected rows in a previous MaxDB operation int maxdb_affected_rows ( resource $link ) Procedural style Object oriented style int $maxdb->affected_rows; maxdb_affected_rows() returns the number of rows affected by the last INSERT, UPDATE, or DELETE query associated with the provided link parameter. If this number cannot be determined, this function will return -1. Note: For S

ingres_unbuffered_query

(No version information available, might only be in Git) Send an unbuffered SQL query to Ingres mixed ingres_unbuffered_query ( resource $link, string $query [, array $params [, string $types ]] ) ingres_unbuffered_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_unbuffered_query() opens a new transaction. To close the tran

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

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0) Open a persistent connection to an Ingres database resource ingres_pconnect ([ string $database [, string $username [, string $password [, array $options ]]]] ) Open a persistent connection to an Ingres database. There are only two differences between this function and ingres_connect(): First, when connecting, the function will initially try to find a (persist

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