ifx_num_rows

(PHP 4, PHP <=5.2.0) Count the rows already fetched from a query int ifx_num_rows ( resource $result_id ) Gives the number of rows fetched so far for a query with result_id after a ifx_query() or ifx_do() query. Parameters: result_id result_id is a valid resultid returned by ifx_query() or ifx_prepare() (select type queries only!). Returns: Re

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

(PHP 4, PHP <=5.2.0) Get the contents of sqlca.sqlerrd[0..5] after a query array ifx_getsqlca ( resource $result_id ) Returns a pseudo-row with sqlca.sqlerrd[0] ... sqlca.sqlerrd[5] after the query associated with result_id. For inserts, updates and deletes the values returned are those as set by the server after executing the query. This gives access to the number of affected rows and the serial insert value. For SELEC

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_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()

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_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_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() -