-
Notifications
You must be signed in to change notification settings - Fork 1
/
обработчикСЯЗ.cs
36 lines (33 loc) · 1.31 KB
/
обработчикСЯЗ.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using MySql.Data.MySqlClient;
namespace advanced_environment
{
static class обработчикСЯЗ
{
private static string строкаСоединения = "";
private static string ИП = "192.168.96.194";
private static string ПОРТ = "3306";
private static string ИМЯПОЛЬЗОВАТЕЛЯ = "root";
private static string ПАРОЛЬ = "root";
private static string БАЗАДАННЫХ = "ae_db";
public static void соеденить()
{
строкаСоединения = "Database=" + БАЗАДАННЫХ + ";Datasource=" + ИП + ";User=" + ИМЯПОЛЬЗОВАТЕЛЯ +
";Password=" + ПАРОЛЬ;
MySqlConnection соединение = new MySqlConnection(строкаСоединения);
try
{
соединение.Open();
соединение.Close();
System.Console.WriteLine("превед медвед!");
}
catch (Exception ошибка)
{
System.Console.WriteLine("ошибка: " + ошибка.ToString());
}
}
}
}