fbsql_db_query

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Send a FrontBase query resource fbsql_db_query ( string $database, string $query [, resource $link_identifier ] ) Selects a database and executes a query on it. Parameters: database The database to be selected. query The SQL query to be executed. Note: The query string shall always end with a semico

fbsql_drop_db

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Drop (delete) a FrontBase database bool fbsql_drop_db ( string $database_name [, resource $link_identifier ] ) fbsql_drop_db() attempts to drop (remove) an entire database from the server associated with the specified link identifier. Parameters: database_name The database name, as a string. link_identifier

fbsql_db_status

(PHP 4 >= 4.0.7, PHP 5, PHP 7) Get the status for a given database int fbsql_db_status ( string $database_name [, resource $link_identifier ] ) Gets the current status of the specified database. Parameters: database_name The database name. link_identifier A FrontBase link identifier returned by fbsql_connect() or fbsql_pconnect(). If

fbsql_create_db

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Create a FrontBase database bool fbsql_create_db ( string $database_name [, resource $link_identifier [, string $database_options ]] ) Attempts to create a new database on the specified server. Parameters: database_name The database name, as a string. link_identifier A FrontBase link identifier returned

fbsql_data_seek

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Move internal result pointer bool fbsql_data_seek ( resource $result, int $row_number ) Moves the internal row pointer of the FrontBase result associated with the specified result identifier to point to the specified row number. The next call to fbsql_fetch_row() would return that row. Parameters: result A result identifier returned by f

fbsql_create_clob

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Create a CLOB string fbsql_create_clob ( string $clob_data [, resource $link_identifier ] ) Creates a CLOB from the given data. Parameters: clob_data The CLOB data. link_identifier A FrontBase link identifier returned by fbsql_connect() or fbsql_pconnect(). If optional and not specified, the function wil

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_create_blob

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Create a BLOB string fbsql_create_blob ( string $blob_data [, resource $link_identifier ] ) Creates a BLOB from the given data. Parameters: blob_data The BLOB data. link_identifier A FrontBase link identifier returned by fbsql_connect() or fbsql_pconnect(). If optional and not specified, the function wil

fbsql_commit

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Commits a transaction to the database bool fbsql_commit ([ resource $link_identifier ] ) Ends the current transaction by writing all inserts, updates and deletes to the disk and unlocking all row and table locks held by the transaction. This command is only needed if autocommit is set to false. Parameters: link_identifier A FrontBase link

fbsql_connect

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Open a connection to a FrontBase Server resource fbsql_connect ([ string $hostname = ini_get("fbsql.default_host") [, string $username = ini_get("fbsql.default_user") [, string $password = ini_get("fbsql.default_password") ]]] ) fbsql_connect() establishes a connection to a FrontBase server. If a second call is made to fbsql_connect() with the same arguments, no new link will be establi