Beispiel #1
0
 private function checkSyntax()
 {
     if (!Sqlite::IsPresent()) {
         $this->error("Error: SQLite support not found\n");
     }
     $files = array($this->getOption('check-syntax'));
     $files += $this->mArgs;
     $result = Sqlite::checkSqlSyntax($files);
     if ($result === true) {
         $this->output("SQL syntax check: no errors detected.\n");
     } else {
         $this->error("Error: {$result}\n");
     }
 }