public static function CDBResultMysql($res = null) { parent::CAllDBResult($res); }
public static function CDBResult($res = NULL) { parent::CAllDBResult($res); }
function CDBResult($res = NULL) { parent::CAllDBResult($res); }
function CDBResult($res = NULL) { parent::CAllDBResult($res); if ($this->result) { //echo "[".$this->result."]"; $intNumFields = OCINumCols($this->result); for ($i = 1; $i <= $intNumFields; $i++) { if (OCIColumnType($this->result, $i) == "CLOB") { $this->arClobs[] = OCIColumnName($this->result, $i); } } } }