fbsql_fetch_row

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Get a result row as an enumerated array array fbsql_fetch_row ( resource $result ) fbsql_fetch_row() fetches one row of data from the result associated with the specified result identifier. Subsequent call to fbsql_fetch_row() would return the next row in the result set, or FALSE if there are no more rows. Parameters: result A result ide

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