I'm new in android. I'm using SQLite database to store data. I have 2 column in this database which are containing unique data for each user.
The problem is when user will get an update, then the update will override the personal data. I want to update the database except 2 columns.
Here is my Initialize Database:
INSERT INTO WORDS (_id, unlocked,solved,score,word,letters,image,suggestion) VALUES (1,1,0,0,'example','example','pics/example.png','example');
As you can see, the 'solved' and 'score' has 0 values. I don't want to update these values. So I don't want to drop the entire database before the update, I would like to keep those 2 values, and make sure the update is not override those data.