Android
Programming and Technical
Programming
Technical
How to upgrade database tables?
Options
1) Pass different version number in incremental order, and put all upgrading code in onUpgrade() of helper class.
2) Pass different version number in incremental order, and put all upgrading code in onCreate() of helper class.
3) Pass different version number in any order, and put all upgrading code in onUpgrade() of helper class.
4) Pass different version number is decremental order, and put all upgrading code in onUpgrade() of helper class.
Read Solution (Total 2)
-
- 1) Pass different version number in incremental order, and put all upgrading code in onUpgrade() of helper class.
- 7 years agoHelpfull: Yes(1) No(0)
- 1) Pass different version number in incremental order, and put all upgrading code in onUpgrade() of helper class.
- 6 years agoHelpfull: Yes(1) No(0)
Android Other Question