Ejemplo n.º 1
0
 protected static function initializeSQLiteDbTables($location)
 {
     $sqlite = new SQLite3($location);
     $tables_setup = DbConfig::getDbTablesSetup();
     foreach ($tables_setup as &$query) {
         $sqlite->exec($query);
     }
     unset($table);
 }