ibase_errmsg

(PHP 5, PHP 7) Return error messages string ibase_errmsg ( void ) Returns the error message that resulted from the most recent InterBase function call. Returns: Returns the error message as a string, or FALSE if no error occurred. See also: ibase_errcode() -

ibase_execute

(PHP 5, PHP 7) Execute a previously prepared query resource ibase_execute ( resource $query [, mixed $bind_arg [, mixed $... ]] ) Execute a query prepared by ibase_prepare(). This is a lot more effective than using ibase_query() if you are repeating a same kind of query several times with only some parameters changing. Parameters: query An InterBase query prepared by ib

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_errcode

(PHP 5, PHP 7) Return an error code int ibase_errcode ( void ) Returns the error code that resulted from the most recent InterBase function call. Returns: Returns the error code as an integer, or FALSE if no error occurred. See also: ibase_errmsg() -

ibase_blob_import

(PHP 5, PHP 7) Create blob, copy file in it, and close it string ibase_blob_import ( resource $link_identifier, resource $file_handle ) string ibase_blob_import ( resource $file_handle ) This function creates a BLOB, reads an entire file into it, closes it and returns the assigned BLOB id. Parameters: link_identifier An InterBase link identifier. If omitted, the last ope

ibase_connect

(PHP 5, PHP 7) Open a connection to a database resource ibase_connect ([ string $database [, string $username [, string $password [, string $charset [, int $buffers [, int $dialect [, string $role [, int $sync ]]]]]]]] ) Establishes a connection to an Firebird/InterBase server. In case a second call is made to ibase_connect() with the same arguments, no new link will be established, but instead, the link identifier of the

ibase_db_info

(PHP 5, PHP 7) Request statistics about a database string ibase_db_info ( resource $service_handle, string $db, int $action [, int $argument = 0 ] ) This function is currently not documented; only its argument list is available.

ibase_delete_user

(PHP 5, PHP 7) Delete a user from a security database bool ibase_delete_user ( resource $service_handle, string $user_name ) Returns: Returns TRUE on success or FALSE on failure. This function is currently not documented; only its argument list is available. See also: ib

ibase_commit

(PHP 5, PHP 7) Commit a transaction bool ibase_commit ([ resource $link_or_trans_identifier = NULL ] ) Commits a transaction. Parameters: link_or_trans_identifier If called without an argument, this function commits the default transaction of the default link. If the argument is a connection identifier, the default transaction of the corresponding connection will be comm

ibase_blob_info

(PHP 5, PHP 7) Return blob length and other useful info array ibase_blob_info ( resource $link_identifier, string $blob_id ) array ibase_blob_info ( string $blob_id ) Returns the BLOB length and other useful information. Parameters: link_identifier An InterBase link identifier. If omitted, the last opened link is assumed. blob_id A BLO