ADO 记录集到 DAO 记录集 (VB.net)

发布于 2024-12-29 04:42:34 字数 118 浏览 2 评论 0原文

在我的网络服务中,我已将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

素手挽清风 2025-01-05 04:42:34

这些是什么功能?你想做什么?

我认为将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文