ingres_connect

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0) Open a connection to an Ingres database resource ingres_connect ([ string $database [, string $username [, string $password [, array $options ]]]] ) ingres_connect() opens a connection with the given Ingres database. The connection is closed when the script ends or when ingres_close() is called on this link. Parameters:

ingres_commit

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0) Commit a transaction bool ingres_commit ( resource $link ) ingres_commit() commits the currently open transaction, making all changes made to the database permanent. This closes the transaction. A new transaction can be opened by sending a query with ingres_query(). You can also have the server commit automatically after every query by calling ingres_autocom

ingres_close

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0) Close an Ingres database connection bool ingres_close ( resource $link ) ingres_close() closes the connection to the Ingres server that is associated with the specified link. ingres_close() is usually unnecessary, as it will not close persistent connections and all non-persistent connections are automatically closed at the end of the script. P

ingres_charset

(PECL ingres >= 2.1.0) Returns the installation character set string ingres_charset ( resource $link ) ingres_charset() is called to determine the character set being used by the Ingres client, from II_CHARSETxx (where xx is the installation code). Note: You can override the value returned by using the function putenv(). Changing the value of II_CHARSETxx in a running Ingres installation can cause data corruption.

ingres_autocommit

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0) Switch autocommit on or off bool ingres_autocommit ( resource $link ) ingres_autocommit() is called before opening a transaction (before the first call to ingres_query() or just after a call to ingres_rollback() or ingres_commit()) to switch the autocommit mode of the server on or off (when the script begins the autocommit mode is off). When autocommit mode is

ingres_autocommit_state

(PECL ingres >= 2.0.0) Test if the connection is using autocommit bool ingres_autocommit_state ( resource $link ) ingres_autocommit_state() is called to determine whether the current link has autocommit enabled or not. Parameters: link The connection link identifier Returns: Returns TRUE if autocommit is enabled or FALSE when autocommit is dis

ifxus_write_slob

(PHP 4, PHP <=5.2.0) Writes a string into the slob object int ifxus_write_slob ( int $bid, string $content ) Writes a string into the slob object. Parameters: bid An existing slob id. content The content to write, as a string. Returns: Returns the bytes written as an integer, or FALSE on errors.

ifxus_tell_slob

(PHP 4, PHP <=5.2.0) Returns the current file or seek position int ifxus_tell_slob ( int $bid ) Returns the current file or seek position of an open slob object Parameters: bid An existing slob id. Returns: Returns the seek position as an integer, or FALSE on errors. See also:

ifxus_seek_slob

(PHP 4, PHP <=5.2.0) Sets the current file or seek position int ifxus_seek_slob ( int $bid, int $mode, int $offset ) Sets the current file or seek position of an open slob object. Parameters: bid An existing slob id. mode 0 = LO_SEEK_SET, 1 = LO_SEEK_CUR, 2 = LO_SEEK_END. offset A byte offset.

ifxus_read_slob

(PHP 4, PHP <=5.2.0) Reads nbytes of the slob object string ifxus_read_slob ( int $bid, int $nbytes ) Reads nbytes of the slob object. Parameters: bid An existing slob id. nbytes The number of bytes to read. Returns: Returns the slob contents as a string, or FALSE on errors.