如何在 DataGridView 中显示数据集中的两个表

发布于 2024-12-11 09:40:21 字数 641 浏览 1 评论 0原文

我有一个包含 2 个不同表的数据集。我要做的就是在 DataGridView 中显示这些表。下面给出了我所做的参考。

    sqlCmd.CommandText = "AutomateKDB"
    sqlCmd.CommandType = CommandType.StoredProcedure
    sqlCmd.Connection = Connection
    sqlCmd.ExecuteNonQuery()
    sqlDaK1 = New SqlDataAdapter(sqlCmd)
    sqlDaK1.Fill(Kds, "KA")

    sqlCmdeA.CommandText = "AutomateeAudIT_KAData"
    sqlCmdeA.CommandType = CommandType.StoredProcedure
    sqlCmdeA.Connection = Connection1
    sqlCmdeA.ExecuteNonQuery()
    sqlDaeK1 = New SqlDataAdapter(sqlCmd)
    sqlDaeK1.Fill(Kds, "eK")

    GridKnowledge.DataSource = Kds

但这是行不通的。请帮我解决这个问题。

提前致谢。,

I have a Dataset with 2 different tables. What I have to do is to display those tables in a DataGridView. What I have done with a reference is given below.

    sqlCmd.CommandText = "AutomateKDB"
    sqlCmd.CommandType = CommandType.StoredProcedure
    sqlCmd.Connection = Connection
    sqlCmd.ExecuteNonQuery()
    sqlDaK1 = New SqlDataAdapter(sqlCmd)
    sqlDaK1.Fill(Kds, "KA")

    sqlCmdeA.CommandText = "AutomateeAudIT_KAData"
    sqlCmdeA.CommandType = CommandType.StoredProcedure
    sqlCmdeA.Connection = Connection1
    sqlCmdeA.ExecuteNonQuery()
    sqlDaeK1 = New SqlDataAdapter(sqlCmd)
    sqlDaeK1.Fill(Kds, "eK")

    GridKnowledge.DataSource = Kds

But this is not working. Please help me with this.

Thanks In Advance.,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

橙味迷妹 2024-12-18 09:40:21

您可以使用两个不同的 DataGridView 或嵌套它们。查看 MSDN 文章 - 分层数据的嵌套网格和代码项目文章 - 具有分层数据绑定的 DataGridView

You can use two different DataGridView or nest them. Take a look at MSDN article - Nested Grids for Hierarchical Data and Code Project article - DataGridView with hierarchical data binding

℡Ms空城旧梦 2024-12-18 09:40:21

您查看两个表。

  1. 打开服务器浏览
  2. 单击查看
  3. 添加表
  4. 选择字段

注意表中的相同字段,选择其中之一

You make view of two tables .

  1. open Server Explore
  2. Click View
  3. Adding Table
  4. Select Field

Note same field in tables, select one of them

世俗缘 2024-12-18 09:40:21

这是不久前发布到 msdn 论坛上的解决方案。

http://social.msdn.microsoft.com/Forums/en-US/winformsdatacontrols/thread/0a63a483-5b15-40d6-afb4-8add6b4f244f

或者,您可以考虑混合使用 winform 和 wpf ,我相信这相对容易......

Here's a solution that was posted to the msdn forums sometime ago.

http://social.msdn.microsoft.com/Forums/en-US/winformsdatacontrols/thread/0a63a483-5b15-40d6-afb4-8add6b4f244f

Alternatively, you might consider mixing winform and wpf, where I believe this is relatively easy...

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