下载并使用 SQLite 数据库?
我目前正在开发一个项目,需要在 iOS 设备上处理大约 100mb 的大量数据。数据当前为 xml 格式,但正在考虑解析为 SQLite 数据库。 因此我的问题是是否有人有从网络服务器下载压缩的 SQLite 数据库、解压缩数据库然后搜索数据库内容的经验?
Iam currently working on a project where i need to handle alot of data around 100mb on a iOS device. The data is currently in xml but thinking about parsing into a SQLite database.
Therefore my question is if anyone have any experience in downloading a compressed SQLite database from a webserver, uncompress the database and then search the database for content?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,我从网络服务器下载了压缩的 sqllite 数据库,解压缩数据库,然后搜索数据库内容。
我还将信息添加到数据库中。
只要没有大量并发写入,Sqllite 就是一个可以接受的数据库。
Yes, I have downloaded a compressed sqllite database from a webserver, uncompressed the database and then searched the database for content.
I've also added information to the database.
Sqllite is an acceptable database, as long as you don't have a lot of concurrent writes.