Changeset 15963
- Timestamp:
- 2007/09/24 10:45:21 (16 years ago)
- Location:
- branches/dev/data
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/dev/data/class/SC_DbConn.php
r15945 r15963 125 125 if ( $arr ){ 126 126 //$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); 128 128 } else { 129 129 //$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); 131 131 } 132 132 -
branches/dev/data/module/MDB2.php
r15960 r15963 1866 1866 } 1867 1867 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 1874 1868 if ($phptype_specific === false 1875 1869 || (!MDB2::classExists($class_name) && !MDB2::fileExists($file_name))
Note: See TracChangeset
for help on using the changeset viewer.