Changeset 19600 for branches/camp


Ignore:
Timestamp:
2010/11/07 05:35:10 (13 years ago)
Author:
miningbrownie
Message:
 
Location:
branches/camp/camp-2_5-E/data
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/camp/camp-2_5-E/data/class/SC_Query.php

    r19595 r19600  
    141141    function select($col, $table, $where = "", $arrval = array(), $fetchmode = MDB2_FETCHMODE_ASSOC) { 
    142142        $sqlse = $this->getSql($col, $table, $where); 
    143         echo $sqlse; 
    144143        return $this->getAll($sqlse, $arrval, $fetchmode); 
    145144    } 
  • branches/camp/camp-2_5-E/data/plugin/TestPlugin1/TestPlugin1.php

    r19587 r19600  
    3636    function install(){ 
    3737        $objQuery = new SC_Query(); 
     38        echo $objQuery->getSql("plugin_id", "dtb_plugin","plugin_name = ? "); 
     39        exit; 
    3840        $arrPlugins = $objQuery->select("plugin_id", "dtb_plugin", "plugin_name = ?",array($this->getName())); 
    3941        $data = array( 
Note: See TracChangeset for help on using the changeset viewer.