ifx_fieldtypes

(PHP 4, PHP <=5.2.0) List of Informix SQL fields array ifx_fieldtypes ( resource $result_id ) Returns an associative array with fieldnames as key and the SQL fieldtypes as data for the query associated with result_id. Parameters: result_id result_id is a valid resultid returned by ifx_query() or ifx_prepare() (select type queries only!). Returns:

ifx_fieldproperties

(PHP 4, PHP <=5.2.0) List of SQL fieldproperties array ifx_fieldproperties ( resource $result_id ) Returns the Informix SQL fieldproperties of every field in the query as an associative array. Properties are encoded as: "SQLTYPE;length;precision;scale;ISNULLABLE" where SQLTYPE = the Informix type like "SQLVCHAR" etc. and ISNULLABLE = "Y" or "N". Parameters: result_id r

ifx_fetch_row

(PHP 4, PHP <=5.2.0) Get row as an associative array array ifx_fetch_row ( resource $result_id [, mixed $position ] ) Fetches one row of data from the result associated with the specified result identifier. Subsequent calls to ifx_fetch_row() would return the next row in the result set, or FALSE if there are no more rows. Parameters: result_id result_id is a valid re

ifx_errormsg

(PHP 4, PHP <=5.2.0) Returns error message of last Informix call string ifx_errormsg ([ int $errorcode ] ) Returns the Informix error message associated with the most recent Informix error. Parameters: errorcode If specified, the function will return the message corresponding to the specified code. Returns: Return the error message, as a strin

ifx_error

(PHP 4, PHP <=5.2.0) Returns error code of last Informix call string ifx_error ([ resource $link_identifier ] ) Returns in a string one character describing the general results of a statement and both SQLSTATE and SQLCODE associated with the most recent SQL statement executed. Parameters: link_identifier The link identifier. Returns: The Infor

ifx_do

(PHP 4, PHP <=5.2.0) Execute a previously prepared SQL-statement bool ifx_do ( resource $result_id ) Executes a previously prepared query or opens a cursor for it. Does NOT free result_id on error. Also sets the real number of ifx_affected_rows() for non-select statements for retrieval by ifx_affected_rows(). Parameters: result_id result_id is a valid resultid retu

ifx_create_char

(PHP 4, PHP <=5.2.0) Creates an char object int ifx_create_char ( string $param ) Creates an char object. Parameters: param The char content. Returns: Returns the new char object id, or FALSE on errors. See also: ifx_free_char() -

ifx_create_blob

(PHP 4, PHP <=5.2.0) Creates an blob object int ifx_create_blob ( int $type, int $mode, string $param ) Creates a blob object. Parameters: type 1 = TEXT, 0 = BYTE mode 0 = blob-object holds the content in memory, 1 = blob-object holds the content in file. param if mode = 0: pointer to the content,

ifx_copy_blob

(PHP 4, PHP <=5.2.0) Duplicates the given blob object int ifx_copy_blob ( int $bid ) Duplicates the given blob object. Parameters: bid A BLOB identifier. Returns: Returns the new blob object-id, or FALSE on errors. See also: ifx_create_blob() -

ifx_connect

(PHP 4, PHP <=5.2.0) Open Informix server connection resource ifx_connect ([ string $database [, string $userid [, string $password ]]] ) ifx_connect() establishes a connection to an Informix server. In case a second call is made to ifx_connect() with the same arguments, no new link will be established, but instead, the link identifier of the already opened link will be returned. The link to the server will be closed