Project

General

Profile

Feature #20242 ยป bug-10786.patch

Administrator Admin, 2009-03-26 17:01

View differences:

t3lib/class.t3lib_db.php (Arbeitskopie)
$this->debug_check_recordset($res);
return mysql_field_type($res,$pointer);
}
/**
* Fetch field information from a result. To fetch all field information
* this method has to be called consecutively until FALSE is returned.
* mysql_fetch_field() wrapper function
* Usage count/core: 0
*
* @param pointer MySQL result pointer (of SELECT query) / DBAL object
* @return object Returns information about the field
*/
function sql_fetch_field($res) {
$this->debug_check_recordset($res);
return mysql_fetch_field($res);
}
/**
* Open a (persistent) connection to a MySQL server
    (1-1/1)