fbsql_start_db

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Start a database on local or remote server bool fbsql_start_db ( string $database_name [, resource $link_identifier [, string $database_options ]] ) Start a database on local or remote server. Parameters: database_name The database name. link_identifier A FrontBase link identifier returned by fbsql_conne

fbsql_set_transaction

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Set the transaction locking and isolation void fbsql_set_transaction ( resource $link_identifier, int $locking, int $isolation ) Sets the transaction locking and isolation. 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 a

fbsql_set_password

(PHP 5, PHP 7) Change the password for a given user bool fbsql_set_password ( resource $link_identifier, string $user, string $password, string $old_password ) Changes the password for the given user. 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

fbsql_set_lob_mode

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Set the LOB retrieve mode for a FrontBase result set bool fbsql_set_lob_mode ( resource $result, int $lob_mode ) Sets the mode for retrieving LOB data from the database. When BLOB and CLOB data is retrieved in FrontBase it can be retrieved direct or indirect. Direct retrieved LOB data will always be fetched no matter the setting of the lob mode. If the LOB data is less than 512 bytes it wi

fbsql_set_characterset

(PHP 5, PHP 7 >= 5.1.0) Change input/output character set void fbsql_set_characterset ( resource $link_identifier, int $characterset [, int $in_out_both ] ) Returns: No value is returned. This function is currently not documented; only its argument list is available.

fbsql_select_db

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Select a FrontBase database bool fbsql_select_db ([ string $database_name [, resource $link_identifier ]] ) Sets the current active database on the given link identifier. The client contacts FBExec to obtain the port number to use for the connection to the database. If the database name is a number the system will use that as a port number and it will not ask FBExec for the port number. Th

fbsql_rows_fetched

(PHP 5, PHP 7 >= 5.1.0) Get the number of rows affected by the last statement int fbsql_rows_fetched ( resource $result ) Gets the number of rows affected by the last statement. Parameters: result A result identifier returned by fbsql_query() or fbsql_db_query(). Returns: Returns the number of rows, as an integer.

fbsql_rollback

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Rollback a transaction to the database bool fbsql_rollback ([ resource $link_identifier ] ) Ends the current transaction by rolling back all statements issued since last commit. This command is only needed if autocommit is set to false. Parameters: link_identifier A FrontBase link identifier returned by fbsql_connect() or fbsql_pconnect(

fbsql_result

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Get result data mixed fbsql_result ( resource $result [, int $row [, mixed $field ]] ) Returns the contents of one cell from a FrontBase result set. When working on large result sets, you should consider using one of the functions that fetch an entire row (specified below). As these functions return the contents of multiple cells in one function call, they're MUCH quicker than fbsql_result

fbsql_read_clob

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Read a CLOB from the database string fbsql_read_clob ( string $clob_handle [, resource $link_identifier ] ) Reads CLOB data from the database. If a select statement contains BLOB and/or CLOB columns FrontBase will return the data directly when data is fetched. This default behavior can be changed with fbsql_set_lob_mode() so the fetch functions will return handles to BLOB and CLOB data. If