ADO 记录集到 DAO 记录集 (VB.net)
在我的网络服务中,我已将 ado 记录集转换为 xml 并返回一个字符串。 在我的应用程序中,我设法将其转换回 ado 记录集,但现在我需要将该记录集转换为 dao,因为我需要使用 dao 提供的一些 ado 没有的功能。
In my webservice I have converted the ado recordset to xml and returned a string.
In my application I managed to convert it back to the ado recordset but now I need to convert that recordset to dao as I need to use some of the functions provided by dao that ado does not have.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些是什么功能?你想做什么?
我认为将 ADO 记录集转换为 DAO 不会有太大运气,因为它们是两个相互竞争的数据访问 API。我认为您可以做到这一点的唯一方法是,将 COM 引用添加到 DAO 3.6 的项目中,并使用 ADO 记录集的结构和数据动态手动构建 DAO 记录集。
What functions would these be? What are you trying to do?
I don't think you will have much luck converting an ADO recordset to DAO as they are two competing data access APIs. About the only way I can think you do it is if you added a COM reference to your project to DAO 3.6 and manually built the DAO recordset on the fly using the structure and data of the ADO recordset.