fbsql_clob_size

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Get the size of a CLOB int fbsql_clob_size ( string $clob_handle [, resource $link_identifier ] ) Returns the size of the given CLOB. Parameters: clob_handle A CLOB handle, returned by fbsql_create_clob(). link_identifier A FrontBase link identifier returned by fbsql_connect() or fbsql_pconnect(). If opt

fbsql_change_user

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Change logged in user of the active connection bool fbsql_change_user ( string $user, string $password [, string $database [, resource $link_identifier ]] ) fbsql_change_user() changes the logged in user of the specified connection. If the new user and password authorization fails, the current connected user stays active. Parameters: user

fbsql_blob_size

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Get the size of a BLOB int fbsql_blob_size ( string $blob_handle [, resource $link_identifier ] ) Returns the size of the given BLOB. Parameters: blob_handle A BLOB handle, returned by fbsql_create_blob(). link_identifier A FrontBase link identifier returned by fbsql_connect() or fbsql_pconnect(). If opt

fbsql_autocommit

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Enable or disable autocommit bool fbsql_autocommit ( resource $link_identifier [, bool $OnOff ] ) Returns the current autocommit status. Parameters: link_identifier A FrontBase link identifier returned by fbsql_connect() or fbsql_pconnect(). If optional and not specified, the function will try to find an open link to the FrontBase server a

fbsql_affected_rows

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Get number of affected rows in previous FrontBase operation int fbsql_affected_rows ([ resource $link_identifier ] ) fbsql_affected_rows() returns the number of rows affected by the last INSERT, UPDATE or DELETE query associated with link_identifier. Note: If you are using transactions, you need to call fbsql_affected_rows() after your INSERT, UPDATE, or DELETE query, not after the commi

ibase_wait_event

(PHP 5, PHP 7) Wait for an event to be posted by the database string ibase_wait_event ( string $event_name1 [, string $event_name2 [, string $... ]] ) string ibase_wait_event ( resource $connection , string $event_name1 [, string $event_name2 [, string $... ]] ) This function suspends execution of the script until one of the specified events is posted by the database. The name of the event that was posted is returned. This

ibase_trans

(PHP 5, PHP 7) Begin a transaction resource ibase_trans ([ int $trans_args [, resource $link_identifier ]] ) resource ibase_trans ([ resource $link_identifier [, int $trans_args ]] ) Begins a transaction. Note: The first call to ibase_trans() will not return the default transaction of a connection. All transactions started by ibase_trans() will be rolled back at the end of the script if they were not committed or rolled

ibase_set_event_handler

(PHP 5, PHP 7) Register a callback function to be called when events are posted resource ibase_set_event_handler ( callable $event_handler, string $event_name1 [, string $event_name2 [, string $... ]] ) resource ibase_set_event_handler ( resource $connection , callable $event_handler , string $event_name1 [, string $event_name2 [, string $... ]] ) This function registers a PHP user function as event handler for the specifie

ibase_service_detach

(PHP 5, PHP 7) Disconnect from the service manager bool ibase_service_detach ( resource $service_handle ) Returns: Returns TRUE on success or FALSE on failure. This function is currently not documented; only its argument list is available.

ibase_service_attach

(PHP 5, PHP 7) Connect to the service manager resource ibase_service_attach ( string $host, string $dba_username, string $dba_password ) This function is currently not documented; only its argument list is available.