Tạo cơ sở dữ liệu
VIDEO
Tạo 1 class để thao tác với sơ sơ dữ liệuPHP:public class DataService
{
string chuoiketnoi = ConfigurationManager.ConnectionStrings["QLBH"].ConnectionString;
SqlConnection ketnoi;
public DataService()
{
}
public void MoKetNoi()
{
ketnoi = new SqlConnection(chuoiketnoi);
ketnoi.Open();
}
public void DongKetNoi()
{
ketnoi.Close();
}
public bool KTDangNhap(string user, string pas)
{
MoKetNoi();
SqlCommand comand = new SqlCommand("select * from nguoidung where TenDangNhap = '"+user+"' and MatKhau='"+pas+"'", ketnoi);
SqlDataReader reder= comand.ExecuteReader();
bool kn = false;
if (reder.HasRows == true) kn= true;
DongKetNoi();
return kn;
}
public string LayHoTen(string user, string pas)
{
MoKetNoi();
SqlCommand comand = new SqlCommand("select HoTen from nguoidung where TenDangNhap = '" + user + "' and MatKhau='" + pas + "'", ketnoi);
String hoten= comand.ExecuteScalar().ToString(); // trả về 1 dòng đầu tiên của bảng dữ liệu
DongKetNoi();
return hoten;
}
public int LayMaQuyen(string user)
{
MoKetNoi();
SqlCommand comand = new SqlCommand("select MaQuyen from nguoidung where TenDangNhap = '" + user + "'", ketnoi);
int q =int.Parse(comand.ExecuteScalar().ToString()); // trả về 1 dòng đầu tiên của bảng dữ liệu
DongKetNoi();
return q;
}
}
Không có nhận xét nào:
Đăng nhận xét