Ignore:
Timestamp:
2011/03/04 23:24:33 (13 years ago)
Author:
shutta
Message:

SC_Queryクラスのclass_extends対応

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/db/SC_DB_MasterData.php

    r20116 r20507  
    106106        $columns = $this->getDefaultColumnName($columns); 
    107107 
    108         $this->objQuery = new SC_Query(); 
     108        $this->objQuery = new SC_Query_Ex(); 
    109109        if ($autoCommit) { 
    110110            $this->objQuery->begin(); 
     
    141141        $columns = $this->getDefaultColumnName($columns); 
    142142 
    143         $this->objQuery = new SC_Query(); 
     143        $this->objQuery = new SC_Query_Ex(); 
    144144        if ($autoCommit) { 
    145145            $this->objQuery->begin(); 
     
    175175        $columns = $this->getDefaultColumnName(); 
    176176 
    177         $this->objQuery = new SC_Query(); 
     177        $this->objQuery = new SC_Query_Ex(); 
    178178        if ($autoCommit) { 
    179179            $this->objQuery->begin(); 
     
    204204     */ 
    205205    function deleteMasterData($name, $autoCommit = true) { 
    206         $this->objQuery = new SC_Query(); 
     206        $this->objQuery = new SC_Query_Ex(); 
    207207        if ($autoCommit) { 
    208208            $this->objQuery->begin(); 
     
    307307        $columns = $this->getDefaultColumnName($columns); 
    308308 
    309         $this->objQuery = new SC_Query(); 
     309        $this->objQuery = new SC_Query_Ex(); 
    310310        if (isset($columns[2]) && strlen($columns[2]) >= 1) { 
    311311            $this->objQuery->setOrder($columns[2]); 
Note: See TracChangeset for help on using the changeset viewer.