从数据集查询 AS400
我有一个数据集,我的问题是如何读取特定值并在查询中设置以删除。
例如,我将发送到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的例子很接近。您正在抓取第一个表,但不是行和行。然后是该行中的列值。您可以通过多种方式做到这一点。
以下是一些示例:
根据您的设置,您可能需要对您的值进行转换/转换或使用 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:
Depending on what you are setting against you might need to convert/cast or use the ToString on your value.