fbsql_read_blob

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Read a BLOB from the database string fbsql_read_blob ( string $blob_handle [, resource $link_identifier ] ) Reads BLOB 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

fbsql_pconnect

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Open a persistent connection to a FrontBase Server resource fbsql_pconnect ([ string $hostname = ini_get("fbsql.default_host") [, string $username = ini_get("fbsql.default_user") [, string $password = ini_get("fbsql.default_password") ]]] ) Establishes a persistent connection to a FrontBase server. To set the server port number, use fbsql_select_db(). fbsql_pconnect() acts very much l

fbsql_query

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Send a FrontBase query resource fbsql_query ( string $query [, resource $link_identifier [, int $batch_size ]] ) Sends a query to the currently active database on the server. If the query succeeds, you can call fbsql_num_rows() to find out how many rows were returned for a SELECT statement or fbsql_affected_rows() to find out how many rows were affected by a DELETE, INSERT, REPLACE, or UPD

fbsql_password

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Get or set the user password used with a connection string fbsql_password ( resource $link_identifier [, string $password ] ) Get or set the user password used with a connection. Parameters: link_identifier A FrontBase link identifier returned by fbsql_connect() or fbsql_pconnect(). If optional and not specified, the function will try to f

fbsql_num_rows

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Get number of rows in result int fbsql_num_rows ( resource $result ) Gets the number of rows in the given result set. This function is only valid for SELECT statements. To retrieve the number of rows returned from a INSERT, UPDATE or DELETE query, use fbsql_affected_rows(). Parameters: result A result identifier returned by fbsql_query()

fbsql_list_fields

(PHP 4 >= 4.0.6, PHP 5, PHP 7) List FrontBase result fields resource fbsql_list_fields ( string $database_name, string $table_name [, resource $link_identifier ] ) Retrieves information about the given table. Parameters: database_name The database name. table_name The table name. link_identifier A F

fbsql_num_fields

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Get number of fields in result int fbsql_num_fields ( resource $result ) Returns the number of fields in the given result set. Parameters: result A result identifier returned by fbsql_query() or fbsql_db_query(). Returns: Returns the number of fields, as an integer.

fbsql_next_result

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Move the internal result pointer to the next result bool fbsql_next_result ( resource $result ) When sending more than one SQL statement to the server or executing a stored procedure with multiple results will cause the server to return multiple result sets. This function will test for additional results available form the server. If an additional result set exists it will free the existing

fbsql_list_tables

(PHP 4 >= 4.0.6, PHP 5, PHP 7) List tables in a FrontBase database resource fbsql_list_tables ( string $database [, resource $link_identifier ] ) Returns a result pointer describing the database. Parameters: database The database name. link_identifier A FrontBase link identifier returned by fbsql_connect() or fbsql_pconnect(). If opti

fbsql_list_dbs

(PHP 4 >= 4.0.6, PHP 5, PHP 7) List databases available on a FrontBase server resource fbsql_list_dbs ([ resource $link_identifier ] ) Return a result pointer containing the databases available from the current fbsql daemon. Use the fbsql_tablename() to traverse this result pointer. Parameters: link_identifier A FrontBase link identifier returned by fbsql_connect() or f