You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
2 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
using System.Windows.Forms;
|
||
|
|
||
|
namespace AppointmentsUi
|
||
|
{
|
||
|
static class Program
|
||
|
{
|
||
|
public static MainForm mainForm = new();
|
||
|
|
||
|
/// <summary>
|
||
|
/// The main entry point for the application.
|
||
|
/// </summary>
|
||
|
[STAThread]
|
||
|
static void Main()
|
||
|
{
|
||
|
|
||
|
Application.SetHighDpiMode(HighDpiMode.SystemAware);
|
||
|
Application.EnableVisualStyles();
|
||
|
Application.SetCompatibleTextRenderingDefault(false);
|
||
|
|
||
|
bool dbConnectionSuccessful = AppointmentsLib.Database.Connect("docker01.solidstage.icu", 3306, "school", "school", "aaa");
|
||
|
|
||
|
if(!dbConnectionSuccessful)
|
||
|
{
|
||
|
MessageBox.Show("Database connection failed, exiting...");
|
||
|
|
||
|
return;
|
||
|
} else
|
||
|
{
|
||
|
//MessageBox.Show("Database connected successfully");
|
||
|
}
|
||
|
|
||
|
Application.Run(mainForm);
|
||
|
}
|
||
|
}
|
||
|
}
|