检查 vb.net 中的数据集是否为空

发布于 2024-10-28 12:29:18 字数 275 浏览 2 评论 0原文

如何检查数据集是否为空? 我编写了以下代码:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

为人所爱 2024-11-04 12:29:18
Dim cm As New OleDbCommand("Select * from Table1", cn)
da = New OleDbDataAdapter(cm)

If (ds.Tables.Contains("Table1") = False) Then
    da.Fill(ds, "Table1")
End If
Dim cm As New OleDbCommand("Select * from Table1", cn)
da = New OleDbDataAdapter(cm)

If (ds.Tables.Contains("Table1") = False) Then
    da.Fill(ds, "Table1")
End If
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文