Exemple #1
0
 function init()
 {
     parent::init();
     $this->sql_templates['describe'] = "pragma table_info([table_noalias])";
 }
Exemple #2
0
 function init()
 {
     parent::init();
     $this->sql_templates['update'] = "update [table] set [set] [where]";
 }
Exemple #3
0
 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]';
 }