I have situation :
In the newer version of the app i will add another column to the SQLite table. I need to make this change take effect when application is updating and do not lose data from database (via recreating with new structure).
May be in onUpgrade start my SQL Update scripts? How to do it correctly?
Alter Tablesql command and add new column. it's not effect to your data. Do it insideonUpgrade(.....)