コード例 #1
0
ファイル: Query.php プロジェクト: weipinglee/nn2
 /**
  * @brief 构造函数
  * @param string $name 表名
  */
 public function __construct($name)
 {
     //$this->tablePre = isset(IWeb::$app->config['DB']['tablePre'])?IWeb::$app->config['DB']['tablePre']:'';
     $this->table = $name;
     $this->db = DbFactory::getInstance();
 }
コード例 #2
0
ファイル: M.php プロジェクト: weipinglee/nn2
 public function __construct($tableName)
 {
     $this->db = DbFactory::getInstance();
     $this->tableName = $this->tablePre . $tableName;
 }