C#中读SQL数据库加上where后 不运行ExecuteReader()
SqlConnectionconn=newSqlConnection();conn.ConnectionString="Server=LAPTOP-BH5SRKO2;Da...
SqlConnection conn = new SqlConnection();
conn.ConnectionString = "Server=LAPTOP-BH5SRKO2;DataBase=YPG;uid=sa;pwd=asakaka1982;";
try
{
Console.WriteLine(conn.State);
conn.Open();
SqlCommand cmd = new SqlCommand("select *from YPG ", conn);
// cmd.ExecuteNonQuery();
// SqlCommand cmd = new SqlCommand(strSql, conn);
SqlDataReader hyw = cmd.ExecuteReader();
MessageBox.Show("登录成功!");
if (hyw.Read())
{
MessageBox.Show("登录成功!");
//conn.Close();
}
else
{
MessageBox.Show("登录失败!");
}
// Console.WriteLine(conn.State);
}
catch (SqlException ex)
{
Console.WriteLine("数据库操作异常!");
Console.WriteLine(ex.Message);
}
finally
{
if (conn.State != ConnectionState.Closed)
conn.Close();
}
SqlCommand cmd = new SqlCommand("select *from YPG ", conn); 这样是没问题的
但是
SqlCommand cmd = new SqlCommand("select *from YPG where 单位=‘1’", conn); 就不行了,一加where就不行。 不知道什么原因。 展开
conn.ConnectionString = "Server=LAPTOP-BH5SRKO2;DataBase=YPG;uid=sa;pwd=asakaka1982;";
try
{
Console.WriteLine(conn.State);
conn.Open();
SqlCommand cmd = new SqlCommand("select *from YPG ", conn);
// cmd.ExecuteNonQuery();
// SqlCommand cmd = new SqlCommand(strSql, conn);
SqlDataReader hyw = cmd.ExecuteReader();
MessageBox.Show("登录成功!");
if (hyw.Read())
{
MessageBox.Show("登录成功!");
//conn.Close();
}
else
{
MessageBox.Show("登录失败!");
}
// Console.WriteLine(conn.State);
}
catch (SqlException ex)
{
Console.WriteLine("数据库操作异常!");
Console.WriteLine(ex.Message);
}
finally
{
if (conn.State != ConnectionState.Closed)
conn.Close();
}
SqlCommand cmd = new SqlCommand("select *from YPG ", conn); 这样是没问题的
但是
SqlCommand cmd = new SqlCommand("select *from YPG where 单位=‘1’", conn); 就不行了,一加where就不行。 不知道什么原因。 展开
3个回答
展开全部
‘1’这里的单引号用错了,你使用的是中文单引号
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
其实这个,你应该断点拿sql查询语句去 sql server里执行,一执行就看到哪错了。
你这儿的查询语句是 cmd.CommandText,断点拿到它的值去sql server里执行吧
你这儿的查询语句是 cmd.CommandText,断点拿到它的值去sql server里执行吧
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
然后提示什么?语法是没问题的,主要是提示截图是个啥
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询