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

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

(PHP 5, PHP 7) Drops a database bool ibase_drop_db ([ resource $connection = NULL ] ) This functions drops a database that was opened by either ibase_connect() or ibase_pconnect(). The database is closed and deleted from the server. Parameters: connection An InterBase link identifier. If omitted, the last opened link is assumed. Returns: Returns

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

(PHP 5, PHP 7) Commit a transaction without closing it bool ibase_commit_ret ([ resource $link_or_trans_identifier = NULL ] ) Commits a transaction without closing it. 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