合并数据集中多个表中的单行数据
情况是这样的:
我有一个包含多个表的数据集(确切地说是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个名为
ds
的数据集,您可以这样做:
Having a DataSet called
ds
You could do this:
您可以使用循环并获取数据。
you can use loop and fetch data.