使用 SqlDataAdapter 计算行数
我的代码有问题。如果有任何行,我想从我的 SqlDataAdapter
获取行数。
I have a problem in my code. I want to get the row count from my SqlDataAdapter
if there are any rows.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许尝试 dt.Rows.Count ,因为那是一个表并且有行。
Maybe try
dt.Rows.Count
since that is a table and has rows.您正在进行赋值而不是比较,必须使用
==
:You were doing an assignment instead of a comparison, you have to use
==
: