コード例 #1
0
ファイル: sqlite.php プロジェクト: easyconn/atk4
 function init()
 {
     parent::init();
     $this->sql_templates['describe'] = "pragma table_info([table_noalias])";
 }
コード例 #2
0
ファイル: mysql.php プロジェクト: xavocvijay/atkschool
 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]';
 }