从数据集查询 AS400

发布于 2024-12-14 03:42:04 字数 172 浏览 0 评论 0原文

我有一个数据集,我的问题是如何读取特定值并在查询中设置以删除。

例如,我将发送到 AS400 的查询:

从 xxx.yyy 中删除,其中 data1 = dataset.tables[0].value

我怎样才能实现这一点?

I have a dataset and my question is how can I read a specific value and set in a query to delete.

For example the query I would send to the AS400:

delete from xxx.yyy where data1 = dataset.tables[0].value

How can I achieve this?

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

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

发布评论

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

评论(1

半衬遮猫 2024-12-21 03:42:04

你的例子很接近。您正在抓取第一个表,但不是行和行。然后是该行中的列值。您可以通过多种方式做到这一点。

以下是一些示例:

datasetname.tables[0].Rows[0].Item(0) 

datasetname.tables[0].Rows[0].Item("ColumnName") 

datasetname.tables[0].Rows[0][0] 

datasetname.tables[0].Rows[0]["ColumnName"]

根据您的设置,您可能需要对您的值进行转换/转换或使用 ToString。

Your example is close. You are grabbing the first table but not the row & then column value in that row. You can do this several ways.

Here's a few samples:

datasetname.tables[0].Rows[0].Item(0) 

datasetname.tables[0].Rows[0].Item("ColumnName") 

datasetname.tables[0].Rows[0][0] 

datasetname.tables[0].Rows[0]["ColumnName"]

Depending on what you are setting against you might need to convert/cast or use the ToString on your value.

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