检查 vb.net 中的数据集是否为空
如何检查数据集是否为空? 我编写了以下代码:
Dim da As New SqlDataAdapter("query",connection string)
da.Fill(ds)
If (Not (ds.Tables.Count > 0)) Then
Response.Redirect("norecords.aspx?str1=" + str1)
end if
在 if 条件下,我无法访问 ds.Tables[0].rows.count 。我该怎么做?
How do i check if the dataset is empty?
I wrote the following code:
Dim da As New SqlDataAdapter("query",connection string)
da.Fill(ds)
If (Not (ds.Tables.Count > 0)) Then
Response.Redirect("norecords.aspx?str1=" + str1)
end if
In the if condition, I am not able to access ds.Tables[0].rows.count
. How should I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)