function _fetch()
	{
		return @OCIfetchinto($this->_queryID,$this->fields,$this->fetchMode);
	}
Exemplo n.º 2
0
 function _fetch()
 {
     $ret = @OCIfetchinto($this->_queryID, $this->fields, $this->fetchMode);
     if ($ret) {
         global $ADODB_ANSI_PADDING_OFF;
         if ($this->fetchMode & OCI_ASSOC) {
             $this->_updatefields();
         }
         if (!empty($ADODB_ANSI_PADDING_OFF)) {
             foreach ($this->fields as $k => $v) {
                 if (is_string($v)) {
                     $this->fields[$k] = rtrim($v);
                 }
             }
         }
     }
     return $ret;
 }
 function _fetch()
 {
     $ret = @OCIfetchinto($this->_queryID, $this->fields, $this->fetchMode);
     if ($ret && $this->fetchMode & OCI_ASSOC) {
         $this->_updatefields();
     }
     return $ret;
 }