ADODB 到 PDO 快速切换
过去我在 php 中使用 adodb 作为 mysql。现在,我想使用 PDO。有什么方法可以让我使用一个数据库连接快速从 adodb 查询切换到 pdo 吗?
In past i use adodb for mysql in php. Now, i want to use PDO. Is there any way that for me to quick switch from adodb query to pdo using one connection to datebase?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能需要检查以下两个示例:
请注意,PDO 是本机编译的库,不会在运行时加载。
You may want to check the following two examples:
Note that PDO is a native compiled library and not loaded at runtime.