February 4th, 2012, 01:10 PM
|
#2 (permalink)
|
|
Senior Member
Join Date: Jul 2010
Posts: 977
Device(s): Samsung Galaxy S II, HTC Evo 4G, Amazon Kindle Fire
Thanks: 52
Thanked 199 Times in 144 Posts
|
1) You really have two options here: (a) add the database to the APK and make it local to the user's device or (b)upload the database to a database server and access the same DB from all Users' devices remotely. If the databsae will be different for each user, and you don't have any need to monitor them, then it probably makes more sense to just go with option (a). If the database is common to all users or you have a need to monitor it for some reason, then option (b) is probably your best bet.
2) For maintaining and updating databases, option (a) can only be updated by issuing an application update containing the new version of the DB. option (b) is a bit easier as you simply need to update the database online and you only need to update the application if you make some sort of major change to the DB, such as adding a new table, or renaming a field or table.
|
|
|