示例#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;
 }