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_next_error

(PECL ingres >= 2.0.0) Get the next Ingres error bool ingres_next_error ([ resource $link ] ) Get the next Ingres error for the last executed query. Each call to ingres_next_error() can be followed by a call to ingres_errno(), ingres_error() or ingres_errsqlstate() to get the respective error number, error text, or SQL STATE. While ingres_next_error() returns TRUE, there are more errors to fetch. Paramete

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

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0) Get the length of a field int ingres_field_length ( resource $result, int $index ) ingres_field_length() returns the length of a field. This is the number of bytes the server uses to store the field. For detailed information, see the Ingres OpenAPI User Guide, Appendix "Data Types" in the Ingres documentation. Note: Related Configurations See ingres.array_ind

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