更新 iPhone 应用程序上的 Sqlite DB
我正在开发一个使用本地 Sqlite3 DB 的 iPhone 应用程序;我想添加一个“更新数据”菜单语音,用于检查我的网站上是否找到新的 sqlite db 版本,如果是,则将文件下载到设备。数据可能经常发生变化,所以我想知道是否可以通过某种方式不从 AppStore 传递数据。 如果可以,如何实施? 提前致谢。 问候! c.
i'm developing an iphone app that uses local Sqlite3 DB; i would like to add an "Update data" menu voice that checks whether a new sqlite db version is found on my site and, if true, downloads file to the device. Data can change very often, so i'm asking if it is possible in some way without passing from the AppStore.
If yes, how can it be implemented?
Thanks in advance.
Grettings !
c.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在应用程序启动时下载 sqlite 文件,并在代码中轻松将其切换。当然,如果模式发生变化,那就是一个更大的问题,但如果它只是数据,那么它应该很简单。
You can download a sqlite file on app launch and switch it out easily in the code. Of course if the schema changes then thats a bigger problem but if its just data then it should be straightforward.