maxdb_field_tell

(PECL maxdb >= 1.0) Get current field offset of a result pointer int maxdb_field_tell ( resource $result ) Procedural style Object oriented style int $maxdb_result->current_field; Returns the position of the field cursor used for the last maxdb_fetch_field() call. This value can be used as an argument to maxdb_field_seek(). Returns: Returns current offset of field cursor.

maxdb_get_metadata

(PECL maxdb 1.0) Alias of maxdb_stmt_result_metadata() This function is an alias of: maxdb_stmt_result_metadata(). This function alias is deprecated and only exists for backwards compatibility reasons. The use of this function is not recommended, as it may be removed from PHP in the future.

maxdb_free_result

(PECL maxdb >= 1.0) Frees the memory associated with a result void maxdb_free_result ( resource $result ) Procedural style Object oriented style void maxdb_result::free ( void ) The maxdb_free_result() function frees the memory associated with the result represented by the result parameter, which was allocated by maxdb_query(), maxdb_store_result() or maxdb_use_result(). Note: You should always free your result with

maxdb_get_server_info

(PECL maxdb >= 1.0) Returns the version of the MaxDB server string maxdb_get_server_info ( resource $link ) Procedural style Object oriented style string $maxdb->server_info; Returns a string representing the version of the MaxDB server that the MaxDB extension is connected to (represented by the link parameter). Returns: A character string representing the server version.

maxdb_get_client_info

(PECL maxdb >= 1.0) Returns the MaxDB client version as a string string maxdb_get_client_info ( void ) The maxdb_get_client_info() function is used to return a string representing the client version being used in the MaxDB extension. Returns: A string that represents the MaxDB client library version Examples: maxdb_get_client_info

maxdb_get_client_version

(PECL maxdb >= 1.0) Get MaxDB client info int maxdb_get_client_version ( void ) Returns client version number as an integer. Returns: A number that represents the MaxDB client library version in format: main_version*10000 + minor_version *100 + sub_version. For example, 7.5.0 is returned as 70500. This is useful to quickly determine the version of the client library to know if some capability

maxdb_field_count

(PECL maxdb >= 1.0) Returns the number of columns for the most recent query int maxdb_field_count ( resource $link ) Procedural style Object oriented style int maxdb::field_count ( void ) Returns the number of columns for the most recent query on the connection represented by the link parameter. This function can be useful when using the maxdb_store_result() function to determine if the query should have produced a non-e

maxdb_fetch_row

(PECL maxdb >= 1.0) Get a result row as an enumerated array mixed maxdb_fetch_row ( resource $result ) Procedural style Object oriented style mixed maxdb_result::fetch_row ( void ) Returns an array that corresponds to the fetched row, or NULL if there are no more rows. maxdb_fetch_row() fetches one row of data from the result set represented by result and returns it as an enumerated array, where each column is stored i

maxdb_fetch_fields

(PECL maxdb >= 1.0) Returns an array of resources representing the fields in a result set mixed maxdb_fetch_fields ( resource $result ) Procedural style Object oriented style mixed maxdb_result::fetch_fields ( void ) This function serves an identical purpose to the maxdb_fetch_field() function with the single difference that, instead of returning one resource at a time for each field, the columns are returned as an array

maxdb_fetch

(PECL maxdb 1.0) Alias of maxdb_stmt_fetch() This function is an alias of: maxdb_stmt_fetch(). This function alias is deprecated and only exists for backwards compatibility reasons. The use of this function is not recommended, as it may be removed from PHP in the future.