合并数据集中多个表中的单行数据

发布于 2024-12-14 01:35:50 字数 150 浏览 0 评论 0原文

情况是这样的:

我有一个包含多个表的数据集(确切地说是 7 个表)。我想要的只是将每个表中的每一行组合起来形成一个字符串。

示例:如果数据集获取两条记录,则首先将每个表中的第一行组合起来形成一个字符串。如果任何特定表的任何行未生成结果,它将生成空字符串。

Here's the situation:

I have a Dataset with multiple tables (7 to be exact). All I want is to combine each row from every table to form a string.

Example: If dataset fetches two records, then the first row from every table is combined first to form a string. If any row of any particular table doesn't generate a result it would generate empty string.

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

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

发布评论

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

评论(2

梦归所梦 2024-12-21 01:35:50

有一个名为 ds 的数据集,

您可以这样做:

StringBuilder sb = new StringBuilder();

foreach (DataTable table in ds.Tables)
{
    for (int i = 0; i < table.Rows.Count; i++)
    {
        for (int j = 0; j < table.Columns.Count; j++)
        {
            sb.Append(table.Rows[i][table.Columns[j]]);
        }
    }
}

Having a DataSet called ds

You could do this:

StringBuilder sb = new StringBuilder();

foreach (DataTable table in ds.Tables)
{
    for (int i = 0; i < table.Rows.Count; i++)
    {
        for (int j = 0; j < table.Columns.Count; j++)
        {
            sb.Append(table.Rows[i][table.Columns[j]]);
        }
    }
}
阪姬 2024-12-21 01:35:50

您可以使用循环并获取数据。

you can use loop and fetch data.

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