Best way to handle data in Corona?

Hi

I have some questions actually. :slight_smile:

  1. What would be the best way to  handle data in a mobile game? Currently my game has different levels and as you pass one, the next one is unlocked. For this I use SQLite. In the database I also store level related data. The idea is to have as many levels as possible. How would you handle adding new levels to players (maybe MySQL)? 

  2. Now I include the db file in the APK, and as you launch the game, the db file is copied from resources folder to the system folder. I’m always overwriting the old db file every time I launch the game. Later I would disable this feature. Would it be possible just to update somehow the db file and not to overwite it?

Thank you for all feedback…