Example #1
0
 public static function CDBResultMysql($res = null)
 {
     parent::CAllDBResult($res);
 }
Example #2
0
 public static function CDBResult($res = NULL)
 {
     parent::CAllDBResult($res);
 }
Example #3
0
 function CDBResult($res = NULL)
 {
     parent::CAllDBResult($res);
 }
Example #4
0
 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);
             }
         }
     }
 }