一、任务需求
1、连接数据库实现登录功能
2、根据不同人的权限登陆不同的页面
二、任务流程
1、准备相关界面及数据库表
2、添加相关代码实现功能
三、主要代码
//双击登录按钮,在代码页面打下如下代码
String connStr = ConfigurationManager.ConnectionStrings["KQ"].ConnectionString;
SqlConnection sqlConn = new SqlConnection(connStr);
try
{
// 连接数据库
sqlConn.Open();
// 构造命令发送给数据库
String sqlStr = "select * from USERS where ID=@id and PASSWORD=@pwd";
SqlCommand cmd = new SqlCommand(sqlStr, sqlConn);
// 注意是用用户ID登录,而不是用户名,用户名可能会重复
cmd.Parameters.Add(new SqlParameter("@id", this.tb_User.Text.Trim()));
cmd.Parameters.Add(new SqlParameter("@pwd", this.tb_Password.Text.Trim()));
SqlDataReader dr = cmd.ExecuteReader();
// 如果从数据库中查询到记录,则表示可以登录
if (dr.HasRows)
{
dr.Read();
UserInfo.userId = int.Parse(dr["ID"].ToString());
UserInfo.userPwd = dr["PASSWORD"].ToString();
UserInfo.userName = dr["NAME"].ToString();
UserInfo.userXB = dr["XB"].ToString();
UserInfo.userAge = int.Parse(dr["Age"].ToString());
UserInfo.userType = dr["TYPE"].ToString();
MessageBox.Show(UserInfo.userType + "登录成功");
if (UserInfo.userType == "普通员工")
{
// 显示管理员主界面
MainFormUser formUser = new MainFormUser();
formUser.Show();
// 隐藏登录界面
this.Hide();
}
if (UserInfo.userType == "管理员")
{
// 显示普通员主界面
MainFormAdmin formAdmin = new MainFormAdmin();
formAdmin.Show();
// 隐藏登录界面
this.Hide();
}
}
else
{
MessageBox.Show("用户名或密码错误", "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
catch (Exception exp)
{
MessageBox.Show("访问数据库错误:" + exp.Message);
}
finally
{
sqlConn.Close();
}
四、结果展示
1、管理员登陆
2、普通职工登陆