表单应用程序中的数据集参数
我很难找出如何在运行时传递我在数据集中的适配器中定义的参数。当我预览数据时,我可以手动插入值,但我无法找到有关如何在 Visual Basic 代码中传递它的任何代码。 任何帮助将不胜感激;-) 预先感谢您的帮助 乔治-路易斯
I'm having a hard time to find out how to pass at run time a parameter which I defined in an adapter in a dataset. When I preview the data I can insert the value manually, but I was not able to find any code around how to pass it in the visual basic code.
Any help will be appreciated ;-)
Thanks in advance for your help
Georges-Louis
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我没有意识到你提到了表格。
您是否尝试过创建带有属性的公共函数方法?也许我不清楚这个问题,但你的意思是你的 dataaapter 有一个定义的值,然后你想在运行时更改它,这是正确的吗?你有这个值作为变量吗?
I didn't realize you mentioned Forms.
Have you tried creating a Public Function method with attributes? Maybe I'm not clear on the question, but you mean you have a defined value for your dataapapter, then you want to change it at run time, is this correct? Do you have that value as a variable?
当您调用填充 TableAdapter 的函数时,您可以指定要传递给查询或存储过程的参数。
我希望这有帮助。
When you call the function that fills the TableAdapter you can specify the parameter to pass to the query or stored procedure.
I hope this helps.