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_database

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Get or set the database name used with a connection string fbsql_database ( resource $link_identifier [, string $database ] ) Get or set the database name used with the 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

fbsql_database_password

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Sets or retrieves the password for a FrontBase database string fbsql_database_password ( resource $link_identifier [, string $database_password ] ) Sets and retrieves the database password used by the connection. If a database is protected by a database password, the user must call this function before calling fbsql_select_db(). If no link is open, the function will try to establish a link

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

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_close

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Close FrontBase connection bool fbsql_close ([ resource $link_identifier ] ) Closes the connection to the FrontBase server that's associated with the specified link identifier. Using fbsql_close() isn't usually necessary, as non-persistent open links are automatically closed at the end of the script's execution. Parameters: link_identifier