Import SQLite database into Android emulator
I've made an android application which needs to connect to a database. I've done making the database. Now my application is not working properly. My question is how can I import my created d开发者_运维技巧atabase into my android application that is running in android emulator?
You could use adb push on the command line or DDMS import/export via eclispe to put the db on to your emulator
Here's a more details step by step: http://www.boringmonday.com/jc/2010/11/22/sqlite-database-on-your-android-emulator/
精彩评论