如何使用 PHP 读取 BerkeleyDB 文件?
好吧,我有一个 berkeleydb 文件,我希望用 php 解析它。我可以使用任何示例来说明如何执行此操作吗?
唯一的问题是,该文件很大,大约 500+ 兆字节(并且直到今天还在增加)。
Well i have a berkeleydb file and i wish to parse it with php. Are there any examples i could use on how to do this?
The only catch is, the file is huge, like 500+ megabytes(and rising to this day).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用DBA 函数以及适当的处理程序(db2、db3或 db4) 将允许您使用 BDB 文件。
The use of the DBA functions along with the appropriate handler (db2, db3, or db4) will allow you to use BDB files.
如果您从 Oracle 网站下载完整源代码(链接)它附带了一个非常简单的 PHP 演示以及驱动程序的源代码。
If you download the full source from the Oracle website (link) it comes with a very simple PHP demonstration as well as source code for the driver.