Changeset 15986


Ignore:
Timestamp:
2007/09/24 11:28:08 (17 years ago)
Author:
kakinaka
Message:
 
Location:
branches/dev/data
Files:
2 edited

Legend:

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

    r15985 r15986  
    5050            } 
    5151        } 
    52         $objDbConnMDB2->setFetchMode(MDB2_FETCHMODE_ASSOC);  
     52//        $objDbConnMDB2->setFetchMode(MDB2_FETCHMODE_ASSOC);  
    5353 
    5454        $this->conn = $objDbConn; 
     
    129129        if ( $arr ){ 
    130130            //$result = $this->conn->getAll($n, $arr, DB_FETCHMODE_ASSOC); 
    131             $result = $this->conn_mdb2->extended->getAll($n, null, $arr); 
     131            $result = $this->conn_mdb2->extended->getAll($n, null, $arr, null, DB_FETCHMODE_ASSOC, true); 
    132132        } else { 
    133133            //$result = $this->conn->getAll($n, DB_FETCHMODE_ASSOC); 
    134             $result = $this->conn_mdb2->extended->getAll($n, null); 
     134            $result = $this->conn_mdb2->extended->getAll($n, null, array(), null, DB_FETCHMODE_ASSOC, true); 
    135135        } 
    136136         
  • branches/dev/data/module/MDB2/Extended.php

    r15985 r15986  
    501501         
    502502        $stmt = $db->prepare($query, $param_types, $types); 
    503          
    504         sfprintr($stmt); 
    505          
    506503        if (PEAR::isError($stmt)) { 
    507504            return $stmt; 
Note: See TracChangeset for help on using the changeset viewer.