-3

Got this SQLite error message when trying to save information to the database. I'm still pretty new to SQL so would appreciate help to figuring out whats happening here.1st part of error message and 2nd part of error message

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245
Vell
  • 391
  • 2
  • 9
  • It would help if you 1) Provided code that the error pointed to and 2) Copied the error into your question instead of images. – OneCricketeer May 05 '16 at 19:09

2 Answers2

0

the colum wishdb does not exist in your table, it's written in the first line of your error.

jeorfevre
  • 2,286
  • 1
  • 17
  • 27
0

The error message is pretty obvious. It says you don't have a wishdb column.

If you added it to the table schema, the problem should be, that you just deployed the new APK to your device. If you do so, the app doesn't recreate the DB with the new schema.

Try uninstalling your app and than deploy the new APK.

Tamás Kozmér
  • 486
  • 5
  • 16