tags:

views:

185

answers:

1

I am able to create, write and read an SQLite Database in my Android App. I have a copy of the Database that is fully populated with data, and I want to get that data into the App's Database. Is it possible to access my pouplaed database from inside my App? Or can I at least create a copy of the populated database and then use that copy? Or do I need to do a .dump and put all the inserts into the Android code?

+1  A: 

See this tutorial for the solution. You can even do database updates from the web with this method.

molnarm