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_get_host_info

(PECL maxdb >= 1.0) Returns a string representing the type of connection used string maxdb_get_host_info ( resource $link ) Procedural style Object oriented style string $maxdb->host_info; The maxdb_get_host_info() function returns a string describing the connection represented by the link parameter is using. Returns: A character string representing the server hostname and the connection ty

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

(PECL maxdb >= 1.0) Set result pointer to a specified field offset bool maxdb_field_seek ( resource $result, int $fieldnr ) Procedural style Object oriented style bool maxdb_result::field_seek ( int $fieldnr ) Sets the field cursor to the given offset. The next call to maxdb_fetch_field() will retrieve the field definition of the column associated with that offset. Note: To seek to the beginning of a row, pass an offs

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

(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.

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