ibase_server_info

(PHP 5, PHP 7) Request information about a database server string ibase_server_info ( resource $service_handle, int $action ) This function is currently not documented; only its argument list is available.

ibase_rollback

(PHP 5, PHP 7) Roll back a transaction bool ibase_rollback ([ resource $link_or_trans_identifier = NULL ] ) Rolls back a transaction. Parameters: link_or_trans_identifier If called without an argument, this function rolls back the default transaction of the default link. If the argument is a connection identifier, the default transaction of the corresponding connection w

ibase_rollback_ret

(PHP 5, PHP 7) Roll back a transaction without closing it bool ibase_rollback_ret ([ resource $link_or_trans_identifier = NULL ] ) Rolls back a transaction without closing it. Parameters: link_or_trans_identifier If called without an argument, this function rolls back the default transaction of the default link. If the argument is a connection identifier, the default tra

ibase_restore

(PHP 5, PHP 7) Initiates a restore task in the service manager and returns immediately mixed ibase_restore ( resource $service_handle, string $source_file, string $dest_db [, int $options = 0 [, bool $verbose = false ]] ) This function is currently not documented; only its argument list is available.

ibase_query

(PHP 5, PHP 7) Execute a query on an InterBase database resource ibase_query ([ resource $link_identifier ], string $query [, int $bind_args ] ) Performs a query on an InterBase database. Parameters: link_identifier An InterBase link identifier. If omitted, the last opened link is assumed. query An InterBase query.

ibase_prepare

(PHP 5, PHP 7) Prepare a query for later binding of parameter placeholders and execution resource ibase_prepare ( string $query ) resource ibase_prepare ( resource $link_identifier , string $query ) resource ibase_prepare ( resource $link_identifier , string $trans , string $query ) Prepare a query for later binding of parameter placeholders and execution (via ibase_execute()). Parameters:

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_param_info

(PHP 5, PHP 7) Return information about a parameter in a prepared query array ibase_param_info ( resource $query, int $param_number ) Returns an array with information about a parameter after a query has been prepared. Parameters: query An InterBase prepared query handle. param_number Parameter offset. Returns:

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