I'm writing an app which will rely heavily on the use of a database. This database will have two "bigger" tables (50rows*70columns and 200rows*20columns) and 5 or 6 smaller tables. The app will need to access, read and edit the database.
Now, I'm having doubts about whether I should create the database programatically at runtime or using a prepopulated one on the assets folder. Considering the size of the database described in the first paragraph, which method do you think brings more advantages?
Thank you.