看一下啊,怎么回事,我做的这个与SQL连接的程序,不知道怎么回事,总提示SQL不存在或SQL 访问不成功,我SQL事先是已经启动的了,请各位指教一个啊.
[求助] SQL连接不成功啊
看一下啊,怎么回事,我做的这个与SQL连接的程序,不知道怎么回事,总提示SQL不存在或SQL 访问不成功,我SQL事先是已经启动的了,请各位指教一个啊.
SqlConnection con = new SqlConnection("server = .;database = login;uid = sa;pwd =;");
con.Open();
SqlCommand cmd = new SqlCommand("select * from login where userName = '"+textBox1.Text+"'and userPwd = '"+textBox2.Text+"'",con);
SqlDataReader read = cmd.ExecuteReader();
if(read.Read())
{
MessageBox.Show("成功登陆!");
}
else
{
MessageBox.Show("登陆失败!");
}