Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't downgrade database from version 2 to 1

Can anybody help me to solve this exception which is occurring in my code?

02-10 17:16:32.406: E/AndroidRuntime(8619): android.database.sqlite.SQLiteException: Can't downgrade database from version 2 to 1

I'm stucked in this. and should i really do care about this "Database Version" thing?

like image 736
Mitesh Agrawal Avatar asked Feb 22 '13 06:02

Mitesh Agrawal


1 Answers

Assuming you are using Android SQLiteOpenHelper, you need to override onDowngrade if you want to be able to run your application with a database on the device with a higher version than your code can handle.

You should care about this "Database Version thing" if ever your database schema is ever going to change (and in general, there is good chance it would).

like image 126
Matthieu Avatar answered Nov 03 '22 12:11

Matthieu