Hello
my game has a database of hundreds of questions and answers,
this is the structure of the questions table
question = String
answer = String
solved = Boolean
once the player solve a question the game should change the value of “solved” column to “true”
I was able to achieve this in the simulator, but not in the device! I have spent more than 3 hours trying to know why it is not working in the device!!!, at the end I figured out that I was placing my database into the resource folder which is not writeable so when I change the value of “solved” column to true it was not changing or even giving me an error!!! 
my question is
I want to copy my database to the sandbox or any permanent writeable folder so i can save player’s progress?
Thanks in advance 