20 lines
481 B
C#
20 lines
481 B
C#
using MySql.Data.MySqlClient;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Dem2
|
|
{
|
|
internal class DataBase
|
|
{
|
|
private static string ConnectionString = "Server=192.168.201.207;Database=ISP41_Gusarov_Dem;Uid=ISP41_Gusarov;Pwd=ISP41_Gusarov;";
|
|
|
|
public static MySqlConnection GetConnection()
|
|
{
|
|
return new MySqlConnection(ConnectionString);
|
|
}
|
|
}
|
|
}
|