如何以编程方式更改 DataSet SqlCommand CommandText
我有一个生成的数据集,其中包含一堆表。 在一张表中,我有一个自定义查询,用于选择 15 岁以上的人。 我想在工作程序期间更改此查询,以便查询看起来像“从年龄 > 的人中选择 *”。 17'。 现在看起来像“从年龄 > 的人中选择*” 15'。
我所知道的只是数据集中此查询的名称是什么。 这是 GetNotYoungPeople。 你能帮我解决这个问题吗?
I have a generated DataSet with bunch of tables. In one table I have a custom query that I use to select people that are older than 15 years. I would like to change this query during working program, so that the query will look like 'select * from people where age > 17'. Now it looks like 'select * from people where age > 15'.
All that I know is what is the name of this query in DataSet. It's GetNotYoungPeople. Could you please help me with this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它可能是 SQLDataAdaptor.SelectCommand
DataSet 由 SQLDataAdaptor 填充。 Fill 方法并且本身没有附加查询
It's probably part of a SQLDataAdaptor.SelectCommand
The DataSet is populated by the SQLDataAdaptor.Fill method and has no attached queries itself