使用 vba 在 MS-Access 前端中从 MySQL 存储过程中获取多个结果集?
我熟悉在 vba 中使用 ADODB 连接和 ADODB 记录集来迭代来自 MySQL 存储过程的单个结果集的记录。但我现在有一个返回多个结果集的存储过程。如何访问所有结果集?有可能吗?
I'm familiar with using the ADODB Connection and ADODB Recordset in vba to iterate through records of a single result set from a stored-procedure from MySQL. But I now have a stored-procedure that returns multiple result sets. How do I access all result sets? Is it even possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 ADO NextRecordset 方法
请参阅详细示例链接到该页面。
Use the ADO NextRecordset Method
See the detailed example linked on that page.