ifx_pconnect

(PHP 4, PHP <=5.2.0) Open persistent Informix connection resource ifx_pconnect ([ string $database [, string $userid [, string $password ]]] ) ifx_pconnect() acts very much like ifx_connect() with two major differences. First, when connecting, the function would first try to find a (persistent) link that's already open with the same host, username and password. If one is found, an identifier for it will be returned inst

ifx_num_fields

(PHP 4, PHP <=5.2.0) Returns the number of columns in the query int ifx_num_fields ( resource $result_id ) After preparing or executing a query, this call gives you the number of columns in the query. Parameters: result_id result_id is a valid resultid returned by ifx_query() or ifx_prepare() (select type queries only!). Returns: Returns the n

ifx_get_char

(PHP 4, PHP <=5.2.0) Return the content of the char object string ifx_get_char ( int $bid ) Returns the content of the char object. Parameters: bid The char object-id. Returns: Returns the contents as a string, or FALSE on errors. See also: ifx_get_blob() -

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_free_char

(PHP 4, PHP <=5.2.0) Deletes the char object bool ifx_free_char ( int $bid ) Deletes the charobject for the given char object-id. Parameters: bid The char object id. Returns: Returns TRUE on success or FALSE on failure. See also: ifx_create_char() -

ifx_free_result

(PHP 4, PHP <=5.2.0) Releases resources for the query bool ifx_free_result ( resource $result_id ) Releases resources 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: Returns TRUE on success or FALSE on failure.

ifx_free_blob

(PHP 4, PHP <=5.2.0) Deletes the blob object bool ifx_free_blob ( int $bid ) Deletes the blobobject for the given blob object-id. Parameters: bid The BLOB object id. Returns: Returns TRUE on success or FALSE on failure. See also: ifx_create_blob() -

ifx_htmltbl_result

(PHP 4, PHP <=5.2.0) Formats all rows of a query into a HTML table int ifx_htmltbl_result ( resource $result_id [, string $html_table_options ] ) Formats and prints all rows of the result_id query into a HTML table. Parameters: result_id result_id is a valid resultid returned by ifx_query() or ifx_prepare() (select type queries only!). html_table

ifx_nullformat

(PHP 4, PHP <=5.2.0) Sets the default return value on a fetch row bool ifx_nullformat ( int $mode ) Sets the default return value of a NULL-value on a fetch row. Parameters: mode Mode "0" returns "", and mode "1" returns "NULL". Returns: Returns TRUE on success or FALSE on failure.

ifx_get_blob

(PHP 4, PHP <=5.2.0) Return the content of a blob object string ifx_get_blob ( int $bid ) Returns the content of the blob object. Parameters: bid The BLOB object id. Returns: The contents of the BLOB as a string, or FALSE on errors. See also: ifx_get_char()