Ignore:
Timestamp:
2011/03/07 15:37:16 (13 years ago)
Author:
Seasoft
Message:

#627(ソース整形・ソースコメントの改善)

  • 半SP
File:
1 edited

Legend:

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

    r20538 r20540  
    217217        return $this->query($str, $arrval); 
    218218    } 
    219      
     219 
    220220    /** 
    221221     * クエリを実行し、結果行毎にコールバック関数を適用する 
     
    240240            return; 
    241241        } 
    242          
     242 
    243243        while($data = $affected->fetchRow($fetchmode)) { 
    244244            $result = call_user_func($cbFunc, $data); 
     
    514514            } 
    515515        } 
    516          
     516 
    517517        $arrVal = array_merge($arrVal, $arrRawSqlVal); 
    518          
     518 
    519519        if (empty($arrCol)) { 
    520520            return false; 
     
    737737            return $sth; 
    738738        } 
    739          
     739 
    740740        //PREPAREの解放 
    741741        $sth->free(); 
    742          
     742 
    743743        return $result; 
    744744    } 
     
    785785        return $objManager->listTableIndexes($table); 
    786786    } 
    787      
     787 
    788788    /** 
    789789     * テーブルにインデックスを付与する 
Note: See TracChangeset for help on using the changeset viewer.