ibase_name_result

(PHP 5, PHP 7) Assigns a name to a result set bool ibase_name_result ( resource $result, string $name ) This function assigns a name to a result set. This name can be used later in UPDATE|DELETE ... WHERE CURRENT OF name statements. Parameters: result An InterBase result set. name The name to be assigned. Returns:

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_maintain_db

(PHP 5, PHP 7) Execute a maintenance command on the database server bool ibase_maintain_db ( resource $service_handle, string $db, int $action [, int $argument = 0 ] ) Returns: Returns TRUE on success or FALSE on failure. This function is currently not documented; only its argument list is available.

ibase_gen_id

(PHP 5, PHP 7) Increments the named generator and returns its new value mixed ibase_gen_id ( string $generator [, int $increment = 1 [, resource $link_identifier = NULL ]] ) Returns: Returns new generator value as integer, or as string if the value is too big. This function is currently not documented; only its argument list is available.

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

(PHP 5, PHP 7) Fetch a row from an InterBase database array ibase_fetch_row ( resource $result_identifier [, int $fetch_flag = 0 ] ) ibase_fetch_row() fetches one row of data from the given result set. Subsequent calls to ibase_fetch_row() return the next row in the result set, or FALSE if there are no more rows. Parameters: result_identifier An InterBase result identi

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