ibase_num_params

(PHP 5, PHP 7) Return the number of parameters in a prepared query int ibase_num_params ( resource $query ) This function returns the number of parameters in the prepared query specified by query. This is the number of binding arguments that must be present when calling ibase_execute(). Parameters: query The prepared query handle. Returns: Return

ibase_num_fields

(PHP 5, PHP 7) Get the number of fields in a result set int ibase_num_fields ( resource $result_id ) Get the number of fields in a result set. Parameters: result_id An InterBase result identifier. Returns: Returns the number of fields as an integer. Examples: ibase_num_fields() exampl

ibase_pconnect

(PHP 5, PHP 7) Open a persistent connection to an InterBase database resource ibase_pconnect ([ string $database [, string $username [, string $password [, string $charset [, int $buffers [, int $dialect [, string $role [, int $sync ]]]]]]]] ) Opens a persistent connection to an InterBase database. ibase_pconnect() acts very much like ibase_connect() with two major differences. First, when connecting, the function will f

ibase_modify_user

(PHP 5, PHP 7) Modify a user to a security database bool ibase_modify_user ( resource $service_handle, string $user_name, string $password [, string $first_name [, string $middle_name [, string $last_name ]]] ) Returns: Returns TRUE on success or FALSE on failure. This function is currently not documented; only its argument list is available.

ibase_field_info

(PHP 5, PHP 7) Get information about a field array ibase_field_info ( resource $result, int $field_number ) Returns an array with information about a field after a select query has been run. Parameters: result An InterBase result identifier. field_number Field offset. Returns: Returns an array with the followin

ibase_free_result

(PHP 5, PHP 7) Free a result set bool ibase_free_result ( resource $result_identifier ) Frees a result set. Parameters: result_identifier A result set created by ibase_query() or ibase_execute(). Returns: Returns TRUE on success or FALSE on failure.

ibase_free_query

(PHP 5, PHP 7) Free memory allocated by a prepared query bool ibase_free_query ( resource $query ) Frees a prepared query. Parameters: query A query prepared with ibase_prepare(). Returns: Returns TRUE on success or FALSE on failure.

ibase_free_event_handler

(PHP 5, PHP 7) Cancels a registered event handler bool ibase_free_event_handler ( resource $event ) This function causes the registered event handler specified by event to be cancelled. The callback function will no longer be called for the events it was registered to handle. Parameters: event An event resource, created by ibase_set_event_handler(). Re

ibase_fetch_object

(PHP 5, PHP 7) Get an object from a InterBase database object ibase_fetch_object ( resource $result_id [, int $fetch_flag = 0 ] ) Fetches a row as a pseudo-object from a given result identifier. Subsequent calls to ibase_fetch_object() return the next row in the result set. Parameters: result_id An InterBase result identifier obtained either by ibase_query() or ibase_e

ibase_fetch_assoc

(PHP 5, PHP 7) Fetch a result row from a query as an associative array array ibase_fetch_assoc ( resource $result [, int $fetch_flag = 0 ] ) Fetch a result row from a query as an associative array. ibase_fetch_assoc() fetches one row of data from the result. If two or more columns of the result have the same field names, the last column will take precedence. To access the other column(s) of the same name, you either need