fbsql_field_len

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Returns the length of the specified field int fbsql_field_len ( resource $result [, int $field_offset ] ) Returns the length of the specified field. Parameters: result A result pointer returned by fbsql_list_fields(). field_offset The numerical offset of the field. The field index starts at 0.

fbsql_fetch_object

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Fetch a result row as an object object fbsql_fetch_object ( resource $result ) fbsql_fetch_object() is similar to fbsql_fetch_array(), with one difference - an object is returned, instead of an array. Indirectly, that means that you can only access the data by the field names, and not by their offsets (numbers are illegal property names). Speed-wise, the function is identical to fbsql_fetc

fbsql_error

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Returns the error message from previous operation string fbsql_error ([ resource $link_identifier ] ) Returns the error message from previous FrontBase operation. Errors coming back from the fbsql database backend don't issue warnings. Instead, use fbsql_error() to retrieve the error text. Note that this function only returns the error code from the most recently executed fbsql function (n

fbsql_fetch_field

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Get column information from a result and return as an object object fbsql_fetch_field ( resource $result [, int $field_offset ] ) Used in order to obtain information about fields in a certain query result. Parameters: result A result identifier returned by fbsql_query() or fbsql_db_query(). field_offset T

fbsql_fetch_lengths

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Get the length of each output in a result array fbsql_fetch_lengths ( resource $result ) Stores the lengths of each result column in the last row returned by fbsql_fetch_row(), fbsql_fetch_array() and fbsql_fetch_object() in an array. Parameters: result A result identifier returned by fbsql_query() or fbsql_db_query(). R

fbsql_fetch_assoc

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Fetch a result row as an associative array array fbsql_fetch_assoc ( resource $result ) Calling fbsql_fetch_assoc() is equivalent to calling fbsql_fetch_array() with FBSQL_ASSOC as second parameter. It only returns an associative array. This is the way fbsql_fetch_array() originally worked. If you need the numeric indices as well as the associative, use fbsql_fetch_array(). An important

fbsql_fetch_array

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Fetch a result row as an associative array, a numeric array, or both array fbsql_fetch_array ( resource $result [, int $result_type ] ) fbsql_fetch_array() is a combination of fbsql_fetch_row() and fbsql_fetch_assoc(). An important thing to note is that using fbsql_fetch_array() is NOT significantly slower than using fbsql_fetch_row(), while it provides a significant added value.

fbsql_errno

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Returns the error number from previous operation int fbsql_errno ([ resource $link_identifier ] ) Returns the numerical value of the error message from previous FrontBase operation. Errors coming back from the fbsql database backend don't issue warnings. Instead, use fbsql_errno() to retrieve the error code. Note that this function only returns the error code from the most recently execute

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