I am writing an application which will have around 5 tables and records up to 5k.
Which is the best way to create the database when someone installs the application from the Market ?
I am writing an application which will have around 5 tables and records up
Share
If those entries are static, you might want to save them in a sql script which is executed on the first start of the app.
If those entries might change from time to time, you might consider only saving the database structure and load the entries from the internet on the first start.