Using System
Using System
Data;
using System.Data.SqlClient;
using System.Windows.Forms;
namespace Shop_Manager;
static DataConn()
{
source = "Data Source=DESKTOP-RUVC0OI;Initial Catalog=qlbh;Integrated
Security=True";
con = new SqlConnection(source);
try
{
con.Open();
}
catch (SqlException)
{
MessageBox.Show("Lỗi cơ sở dữ liệu! Hãy xem trợ giúp!");
}
}