ConnectBlank() public static method

public static ConnectBlank ( ) : void
return void
Example #1
0
 private static void createBlankDB()
 {
     LogB.SQL("Creating blank database");
     Sqlite.ConnectBlank();
     Sqlite.CreateFile();
     Sqlite.CreateTables(false);         //not server
     LogB.SQL("Created blank database! Exiting");
 }