private static void Main() { //Example code InitDB(); RecordFunctions.PrintRows(); RecordFunctions.exportTable(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "exporteddb"); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new PHPApplication()); }
static void Main() { //Example code InitDB(); RecordFunctions.InsertRecord("record name", 4.7, "2343-33-55"); RecordFunctions.PrintRows(); RecordFunctions.exportTable(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "exporteddb"); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); }