这代码哪出错了,求大神看看
try{
conn = new OleDbConnection(myconn);
conn.Open();
cmd = new OleDbCommand("select * from Student_Login where Sno = '" + textUser.Text.Trim() + "'" + "'and Password='" + textPwd.Text.Trim() + "' ", conn);
read = cmd.ExecuteReader();
//该学生信息存在且密码正确
if (read.Read())
{
//进入学生界面
Form2 form2 = new Form2();
form2.Show();
}
else //没有该学生的信息
{
MessageBox.Show("不存在该学生或密码不正确!");
}
}
catch (Exception ee)
{
MessageBox.Show(ee.ToString());
}
finally
{
read.Close();
conn.Close(); //关闭数据库连接
}
[ 本帖最后由 清波无雯 于 2014-9-7 11:20 编辑 ]