public static void callCreateTable(string table) { DBtools d = new DBtools(); bool err = d.createTable(table + ".sql"); if (!err) { Console.WriteLine("\nCreate " + table + " - SUCCESS\n"); } else { Console.WriteLine("\n" + table + " Not Created \n"); } }