可以在手机上使用Berkeley DB
我可以直接在手机中使用 Berkeley DB
python 类吗?我的意思是 DB python 类和方法是否已准备好在任何常见手机(如 Nokia
、)中使用Samsong(Windows Mobile)
..等。
如果一个手机系统支持Python语言,是否意味着在它上面使用Berkeley DB就很简单了……
Can i use Berkeley DB
python classes in mobile phone directly , i mean Do DB python classes and methods are ready to be used in any common mobile phone like Nokia
,Samsong (windows mobile)
..etc.
If a phone system supports python language, does that mean that it is easy and straightforward to use Berkeley DB on it...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Berkeley DB 是一个需要可用的库。您可能拥有的是与 Berkeley DB 的 Python 绑定。如果该库不存在,那么使用 Python 也无济于事。
寻找 SQLite,它可能存在(适用于 iPhone),因为它支持 SQL,并且其库大小比 Berkeley DB 小,这使得它更适合移动操作系统。
Berkeley DB is a library that needs to be available. What you may have is Python bindings to Berkeley DB. If the library is not present, having Python will not help.
Look for SQLite, which may be present (it is for iPhone) as it has SQL support and its library size is smaller than Berkeley DB, which makes it better suited for mobile OSes.