iOS:将表单 plist 迁移到 SQLite 数据存储
我正在使用 plist 在 iPhone 应用程序中存储数据,但现在需要升级到更强大的数据仓库。我可以升级应用程序以实现从plist到sqllite的迁移而不丢失数据吗?谢谢。
I'm using the plist for storing data in iphone application, but now there is a need to upgrade to more powerful data warehouse. Can I upgrade the application to implement migration from plist to sqllite without losing data? Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大概。
当您的应用程序启动时,如果它没有数据库文件(因为这是第一次使用更新的应用程序运行),请读入 plist 数据,并将其写入新的数据库文件。
您必须处理 plist 格式和数据库结构之间的转换。
Probably.
When your app launches, if it doesn't have a database file (because it's the first time being run with updated app), read in the plist data, and write it out to your new database file.
You will have to handle translating between the format of the plist and the structure of your database.