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_fields

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0) Get the number of fields returned by the last query int ingres_num_fields ( resource $result ) ingres_num_fields() returns the number of fields in the results returned by the Ingres server after a call to ingres_query(). Parameters: result The query result identifier Returns: Returns

ingres_free_result

(PECL ingres >= 2.0.0) Free the resources associated with a result identifier bool ingres_free_result ( resource $result ) Parameters: result The query result identifier Returns: Returns TRUE on success or FALSE on failure. Examples: Free a result resource <?php $lin

ingres_field_scale

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0) Get the scale of a field int ingres_field_scale ( resource $result, int $index ) ingres_field_scale() returns the scale of a field. This value is used only for the decimal SQL data type. For detailed information, see the Ingres OpenAPI User Guide, Appendix "Data Types" in the Ingres documentation. Note: Related Configurations See ingres.array_index_start in R

ingres_field_type

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0) Get the type of a field in a query result string ingres_field_type ( resource $result, int $index ) Get the type of a field in a query result. Note: Related Configurations See ingres.array_index_start in Runtime Configuration Parameters: result The query result identifier index

ingres_field_precision

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0) Get the precision of a field int ingres_field_precision ( resource $result, int $index ) ingres_field_precision() returns the precision of a field. This value is used only for decimal, float, and money SQL data types. For detailed information, see the Ingres OpenAPI User Guide, Appendix "Data Types" in the Ingres documentation. Note: Related Configurations Se

ingres_field_name

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0) Get the name of a field in a query result string ingres_field_name ( resource $result, int $index ) ingres_field_name() returns the name of a field in a query result. Note: Related Configurations See ingres.array_index_start in Runtime Configuration Parameters: result The query result identifier

ingres_field_nullable

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0) Test if a field is nullable bool ingres_field_nullable ( resource $result, int $index ) Test if a field is nullable. Note: Related Configurations See ingres.array_index_start in Runtime Configuration Parameters: result The query result identifier index index is the fiel

ingres_fetch_row

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0) Fetch a row of result into an enumerated array array ingres_fetch_row ( resource $result ) ingres_fetch_row() returns an array that corresponds to the fetched row, or FALSE if there are no more rows. Each result column is stored in an array offset, starting at offset 1. Subsequent calls to ingres_fetch_row() return the next row in the result set, or FALSE if t

ingres_fetch_proc_return

(PECL ingres >= 1.4.0) Get the return value from a procedure call int ingres_fetch_proc_return ( resource $result ) This function is used to retrieve the return value following the execution of an Ingres database procedure (stored procedure). Note: If used with a row-producing procedure, this function should be called after all the rows from the procedure have been fetched using ingres_fetch_array(), ingres_fetch_obje