Esempio n. 1
0
        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");
            }
        }