示例#1
0
文件: sqlite.php 项目: easyconn/atk4
 function init()
 {
     parent::init();
     $this->sql_templates['describe'] = "pragma table_info([table_noalias])";
 }
示例#2
0
 function init()
 {
     parent::init();
     $this->sql_templates['update'] = "update [table] set [set] [where]";
 }
示例#3
0
文件: firebird.php 项目: atk4/atk4
 public function init()
 {
     parent::init();
     $this->sql_templates['update'] = 'update [table] set [set] [where]';
     $this->sql_templates['select'] = 'select [limit] [options] [field] [from] [table] [join] [where] [group] [having] [order]';
 }