Android 上应用升级后如何更新表架构?

发布于 2024-08-21 00:38:17 字数 286 浏览 7 评论 0原文

我有一个未完成的应用程序,但我现在想解决它的未来更新问题。

假设我的应用程序已升级,因此在启动时检测到数据库架构已过时。因此,每个表都必须根据版本号更新到新架构,同时保留所有数据。

我在某处读到,在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

九八野马 2024-08-28 00:38:18

SQLiteOpenHelper 是你的朋友。

您需要提供 onCreateonUpgrade 方法。

SQLiteOpenHelper is your friend here.

You need to supply onCreate and onUpgrade methods.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文