-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
77 lines (70 loc) · 2.52 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
using MySql.Data.MySqlClient;
using SharpBMI.dao;
using SharpBMI.ui;
using SharpBMI.utils;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace SharpBMI
{
static class Program
{
static MyConnection con = new MyConnection();
/// <summary>
/// Point d'entrée principal de l'application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
bool installed = FormUtils.checkMySQLService();
if (installed)
{
FormUtils.showErrorMessage("Erreur", FormUtils.loadConfigs("UNINSTALLED_MYSQL_SERVICE"));
}
else
{
try
{
FormUtils.startMySQLService();
FormUtils.showInfoMessage("Info", FormUtils.loadConfigs("SUCCESS_MYSQL_START"));
}
catch (Exception ex)
{
FormUtils.showErrorMessage("Error", FormUtils.loadConfigs("FAILURE_MYSQL_START"));
FormUtils.showErrorMessage("Error", ex.Message);
Application.Exit();
}
try
{
if (con.EstablishConnection().State.Equals(ConnectionState.Open))
{
FormUtils.showInfoMessage("Information", FormUtils.loadConfigs("SUCCESS_DATABASE_CONNECTION"));
Application.Run(new FormBMI());
}
else if (con.EstablishConnection().State.Equals(ConnectionState.Closed))
{
FormUtils.showErrorMessage("Error", FormUtils.loadConfigs("ERROR_DATABASE_CONNECTION"));
Application.Exit();
}
}
catch (MySqlException ex)
{
switch (ex.Number)
{
case 0:
FormUtils.showErrorMessage("Error", "Cannot connect to server. Contact administrator");
break;
case 1045:
FormUtils.showErrorMessage("Error", "Invalid username/password, please try again");
break;
}
}
}
}
}
}