C#期末答辩帮忙解释下代码意思!!!
namespace学生管理系统{publicpartialclassForm1:Form{publicForm1(){InitializeComponent();}pri...
namespace 学生管理系统{ public partial class Form1 : Form { public Form1() { InitializeComponent(); }
private SqlConnection SqlConnection1; private SqlCommand SqlCommand1; private SqlDataAdapter SqlDataAdapter1; DataSet dataSet1; private string connStr = "server = localhost;database=StuMagSys;Integrated Security=SSPI;"; private string sqlStr;
private void button1_Click(object sender, EventArgs e) { sqlStr = "select*from syuser where Use_name='" + this.textBox1.Text.Trim() + "'and password='" + textBox2.Text + "' "; SqlConnection1 = new SqlConnection(connStr); SqlDataAdapter1 = new SqlDataAdapter(sqlStr, SqlConnection1); dataSet1 = new DataSet(); SqlDataAdapter1.Fill(dataSet1, "syuser"); DataTable mytable = dataSet1.Tables["syuser"]; if (mytable.Rows.Count > 0) { this.Hide(); MyTool.currentUserName = textBox1.Text; MainFrm mainFrm = new MainFrm(); mainFrm.Show(); } else { MessageBox.Show("用户名/密码错误!请重试!", "确认", MessageBoxButtons.OK); } }
private void button2_Click(object sender, EventArgs e) { this.Close(); } }} 展开
private SqlConnection SqlConnection1; private SqlCommand SqlCommand1; private SqlDataAdapter SqlDataAdapter1; DataSet dataSet1; private string connStr = "server = localhost;database=StuMagSys;Integrated Security=SSPI;"; private string sqlStr;
private void button1_Click(object sender, EventArgs e) { sqlStr = "select*from syuser where Use_name='" + this.textBox1.Text.Trim() + "'and password='" + textBox2.Text + "' "; SqlConnection1 = new SqlConnection(connStr); SqlDataAdapter1 = new SqlDataAdapter(sqlStr, SqlConnection1); dataSet1 = new DataSet(); SqlDataAdapter1.Fill(dataSet1, "syuser"); DataTable mytable = dataSet1.Tables["syuser"]; if (mytable.Rows.Count > 0) { this.Hide(); MyTool.currentUserName = textBox1.Text; MainFrm mainFrm = new MainFrm(); mainFrm.Show(); } else { MessageBox.Show("用户名/密码错误!请重试!", "确认", MessageBoxButtons.OK); } }
private void button2_Click(object sender, EventArgs e) { this.Close(); } }} 展开
展开全部
登入 密码验证:
定义 数据库连接字符串
定义sql查询语句 在表 user_name里面插 用户名和密码是否匹配
把查询出来的数据 填充到 dataset1 然后 把dataset1 赋值给 了 mytable;然后 判断 mytable的行数如果 行数大于0 说明 用户名和密码 在 user_name 中存在 说明用户名和密码正确 然后打开新的0窗口 ,如果 等于0 说明用户名和密码在user_name 中不存在 说明用户名和密码不正确 弹出 messagebox("用户名/密码错误!请重试!", "确认", MessageBoxButtons.OK);
定义 数据库连接字符串
定义sql查询语句 在表 user_name里面插 用户名和密码是否匹配
把查询出来的数据 填充到 dataset1 然后 把dataset1 赋值给 了 mytable;然后 判断 mytable的行数如果 行数大于0 说明 用户名和密码 在 user_name 中存在 说明用户名和密码正确 然后打开新的0窗口 ,如果 等于0 说明用户名和密码在user_name 中不存在 说明用户名和密码不正确 弹出 messagebox("用户名/密码错误!请重试!", "确认", MessageBoxButtons.OK);
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询