• Main Page
  • Related Pages
  • Namespaces
  • Data Structures
  • Files
  • Examples
  • File List

E:/E/GEAMP/www/openbiz/openbiz/others/Zend/Db/Statement/Pdo/Oci.php

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 }

Generated on Thu Apr 19 2012 17:01:17 for openbiz by  doxygen 1.7.2