How to update table schema after an app upgrade on

2019-01-24 09:44发布

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?

2条回答
一夜七次
2楼-- · 2019-01-24 10:25

SQLiteOpenHelper is your friend here.

You need to supply onCreate and onUpgrade methods.

查看更多
劳资没心,怎么记你
3楼-- · 2019-01-24 10:33

Have you looked at SQLiteOpenHelper?

查看更多
登录 后发表回答