maxdb_fetch_object

(PECL maxdb >= 1.0) Returns the current row of a result set as an object object maxdb_fetch_object ( object $result ) Procedural style Object oriented style object maxdb_result::fetch_object ( void ) The maxdb_fetch_object() will return the current row result set as an object where the attributes of the object represent the names of the fields found within the result set. If no more rows exist in the current result set,

maxdb_fetch_lengths

(PECL maxdb >= 1.0) Returns the lengths of the columns of the current row in the result set array maxdb_fetch_lengths ( resource $result ) Procedural style Object oriented style array $maxdb_result->lengths; The maxdb_fetch_lengths() function returns an array containing the lengths of every column of the current row within the result set represented by the result parameter. If successful, a numerically indexed array r

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_field

(PECL maxdb >= 1.0) Returns the next field in the result set mixed maxdb_fetch_field ( resource $result ) Procedural style Object oriented style mixed maxdb_result::fetch_field ( void ) The maxdb_fetch_field() returns the definition of one column of a result set as an resource. Call this function repeatedly to retrieve information about all columns in the result set. maxdb_fetch_field() returns FALSE when no more fields

maxdb_fetch_field_direct

(PECL maxdb >= 1.0) Fetch meta-data for a single field mixed maxdb_fetch_field_direct ( resource $result, int $fieldnr ) Procedural style Object oriented style mixed maxdb_result::fetch_field_direct ( int $fieldnr ) maxdb_fetch_field_direct() returns an resource which contains field definition information from specified resultset. The value of fieldnr must be in the range from 0 to number of fields - 1.

maxdb_fetch_assoc

(PECL maxdb >= 1.0) Fetch a result row as an associative array array maxdb_fetch_assoc ( resource $result ) Procedural style Object oriented style array maxdb_result::fetch_assoc ( void ) Returns an associative array that corresponds to the fetched row or NULL if there are no more rows. The maxdb_fetch_assoc() function is used to return an associative array representing the next row in the result set for the result rep

maxdb_fetch_array

(PECL maxdb >= 1.0) Fetch a result row as an associative, a numeric array, or both mixed maxdb_fetch_array ( resource $result [, int $resulttype ] ) Procedural style Object oriented style mixed maxdb_result::fetch_array ([ int $resulttype ] ) Returns an array that corresponds to the fetched row or NULL if there are no more rows for the resultset represented by the result parameter. maxdb_fetch_array() is an extended ve

maxdb_execute

(PECL maxdb 1.0) Alias of maxdb_stmt_execute() This function is an alias of: maxdb_stmt_execute(). 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_escape_string

(PECL maxdb 1.0) Alias of maxdb_real_escape_string() This function is an alias of: maxdb_real_escape_string().

maxdb_error

(PECL maxdb >= 1.0) Returns a string description of the last error string maxdb_error ( resource $link ) Procedural style Object oriented style string $maxdb->error; The maxdb_error() function is identical to the corresponding maxdb_errno() function in every way, except instead of returning an integer error code the maxdb_error() function will return a string representation of the last error to occur for the database