C#中的未处理的“System.Data.SqlClient.SqlException”类型的异常出现在 system.data.d
usingSystem;usingSystem.Drawing;usingSystem.Collections;usingSystem.ComponentModel;us...
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;
#region 登陆按钮
private void butt_login_Click(object sender, System.EventArgs e)
{
/*获取输入的用户名和密码*/
string uname=this.txtusername.Text.ToString();
string upassword=this.txtpassword.Text.ToString();
/*链接数据库*/
SqlConnection conn=new SqlConnection("server=(local);database=Customer;uid=sa;pwd=;");
conn.Open();
SqlCommand cmd=conn.CreateCommand();
cmd.CommandText = "select UserName,PassWord from UserList where UserName='" +uname+ "'";
SqlDataReader myReader = cmd.ExecuteReader();
/*输入判断*/
if(myReader.Read()) /*用户名存在时*/
{
if(upassword=="")
{
MessageBox.Show("请输入密码!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
}
if(myReader["PassWord"].ToString().Trim()==upassword) /*用户名、密码正确,登陆成功*/
{
MainMenu tt=new MainMenu();
tt.Show();
}
else
{
MessageBox.Show("密码错误!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
}
}
else /*用户名不存在时*/
{
MessageBox.Show("用户不能为空!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
conn.Open();
myReader.Close();
}
}
#endregion
调试时提示:
未处理的“System.Data.SqlClient.SqlException”类型的异常出现在 system.data.dll 中。
其他信息: 系统错误。
请大家帮我看看是哪有问题! 展开
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;
#region 登陆按钮
private void butt_login_Click(object sender, System.EventArgs e)
{
/*获取输入的用户名和密码*/
string uname=this.txtusername.Text.ToString();
string upassword=this.txtpassword.Text.ToString();
/*链接数据库*/
SqlConnection conn=new SqlConnection("server=(local);database=Customer;uid=sa;pwd=;");
conn.Open();
SqlCommand cmd=conn.CreateCommand();
cmd.CommandText = "select UserName,PassWord from UserList where UserName='" +uname+ "'";
SqlDataReader myReader = cmd.ExecuteReader();
/*输入判断*/
if(myReader.Read()) /*用户名存在时*/
{
if(upassword=="")
{
MessageBox.Show("请输入密码!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
}
if(myReader["PassWord"].ToString().Trim()==upassword) /*用户名、密码正确,登陆成功*/
{
MainMenu tt=new MainMenu();
tt.Show();
}
else
{
MessageBox.Show("密码错误!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
}
}
else /*用户名不存在时*/
{
MessageBox.Show("用户不能为空!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
conn.Open();
myReader.Close();
}
}
#endregion
调试时提示:
未处理的“System.Data.SqlClient.SqlException”类型的异常出现在 system.data.dll 中。
其他信息: 系统错误。
请大家帮我看看是哪有问题! 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询