00001 <?php 00026 require_once 'Zend/Db/Statement/Pdo.php'; 00027 00040 class Zend_Db_Statement_Pdo_Oci extends Zend_Db_Statement_Pdo 00041 { 00042 00055 public function fetchAll($style = null, $col = null) 00056 { 00057 $data = parent::fetchAll($style, $col); 00058 $results = array(); 00059 $remove = $this->_adapter->foldCase('zend_db_rownum'); 00060 00061 foreach ($data as $row) { 00062 if (is_array($row) && array_key_exists($remove, $row)) { 00063 unset($row[$remove]); 00064 } 00065 $results[] = $row; 00066 } 00067 return $results; 00068 } 00069 }