Changeset 15964
- Timestamp:
- 2007/09/24 10:47:39 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/dev/data/class/SC_DbConn.php
r15963 r15964 49 49 } 50 50 } 51 51 52 $this->conn = $objDbConn; 52 53 $this->conn_mdb2 = $objDbConnMDB2; … … 54 55 $this->error_mail_title = DB_ERROR_MAIL_SUBJECT; 55 56 $this->err_disp = $err_disp; 57 58 $this->conn_mdb2->setFetchMode(MDB2_FETCHMODE_ASSOC); 56 59 } 57 60 … … 125 128 if ( $arr ){ 126 129 //$result = $this->conn->getAll($n, $arr, DB_FETCHMODE_ASSOC); 127 $result = $this->conn_mdb2->extended->getAll($n, null, $arr , DB_FETCHMODE_ASSOC);130 $result = $this->conn_mdb2->extended->getAll($n, null, $arr); 128 131 } else { 129 132 //$result = $this->conn->getAll($n, DB_FETCHMODE_ASSOC); 130 $result = $this->conn_mdb2->extended->getAll($n, null , DB_FETCHMODE_ASSOC);133 $result = $this->conn_mdb2->extended->getAll($n, null); 131 134 } 132 135
Note: See TracChangeset
for help on using the changeset viewer.