Can't you use adb to get the database out of the emulator? I actually just answered a similar question ... here it is:
The database for a specific application lives in /data/data/[packagename]/databases
A batch name is a package that you define in your manifest, for example /data/data/org.vimtips.supacount/databases/counts.db.
You can view it with adb shelland typesqlite3 /data/data/org.vimtips.supacount/databases/counts.db
Or you can pull it out of the device to look at it using a third-party utility, with a command like adb pull /data/data/org.vimtips.supacount/databases/counts.db ..
source
share