Changeset 15963


Ignore:
Timestamp:
2007/09/24 10:45:21 (17 years ago)
Author:
kakinaka
Message:
 
Location:
branches/dev/data
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/data/class/SC_DbConn.php

    r15945 r15963  
    125125        if ( $arr ){ 
    126126            //$result = $this->conn->getAll($n, $arr, DB_FETCHMODE_ASSOC); 
    127             $result = $this->conn_mdb2->extended->getAll($n, $arr, DB_FETCHMODE_ASSOC); 
     127            $result = $this->conn_mdb2->extended->getAll($n, null, $arr, DB_FETCHMODE_ASSOC); 
    128128        } else { 
    129129            //$result = $this->conn->getAll($n, DB_FETCHMODE_ASSOC); 
    130             $result = $this->conn_mdb2->extended->getAll($n, DB_FETCHMODE_ASSOC); 
     130            $result = $this->conn_mdb2->extended->getAll($n, null, DB_FETCHMODE_ASSOC); 
    131131        } 
    132132         
  • branches/dev/data/module/MDB2.php

    r15960 r15963  
    18661866            } 
    18671867             
    1868             sfprintr($phptype_specific); 
    1869             sfprintr($class_name); 
    1870             sfprintr($file_name); 
    1871             sfprintr(!MDB2::classExists($class_name)); 
    1872             sfprintr(!MDB2::fileExists($file_name)); 
    1873              
    18741868            if ($phptype_specific === false 
    18751869                || (!MDB2::classExists($class_name) && !MDB2::fileExists($file_name)) 
Note: See TracChangeset for help on using the changeset viewer.