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

(PECL maxdb >= 1.0) Returns the error code for the most recent function call int maxdb_errno ( resource $link ) Procedural style Object oriented style int $maxdb->errno; The maxdb_errno() function will return the last error code for the most recent MaxDB function call that can succeed or fail with respect to the database link defined by the link parameter. If no errors have occurred, this function will return zero.

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