Android 上应用升级后如何更新表架构?
我有一个未完成的应用程序,但我现在想解决它的未来更新问题。
假设我的应用程序已升级,因此在启动时检测到数据库架构已过时。因此,每个表都必须根据版本号更新到新架构,同时保留所有数据。
我在某处读到,在 Android 上,SQLite 数据库有一些版本号和自动更新功能,但我没有找到针对此特定问题的示例。
如何使用 SQLite 数据库在 Android 应用程序上实现这一点?
Android SQLite 数据库中存储的每个表是否有特定的版本号?如果是这样,我如何阅读它并用于我的上述目的?
I have an unfinished application, but I want to address now the future update of it.
Suppose my app was upgraded, so when starts, detects that the database schema is outdated. So for each table has to update according to version number to the new schema while preserving all data.
I've read somewhere that on Android the SQLite database have some version number, and auto update stuff, but I didn't found an example for this specific issue.
How can this be accomplished on an Android app, using SQLite databases?
Is there a specific version number per table stored on Android SQLite databases? If so, how can I read it, and use for my above purpose?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SQLiteOpenHelper
是你的朋友。您需要提供
onCreate
和onUpgrade
方法。SQLiteOpenHelper
is your friend here.You need to supply
onCreate
andonUpgrade
methods.