tags:

views:

16

answers:

1

where do the tables created using SQlite database will be stored in Android? how to access them and see the data contained in them.

A: 

Android documentation explains it and the SDK provides a tool for accessing the database

http://developer.android.com/guide/topics/data/data-storage.html#db

there is additional information about db location in emulator here

http://stackoverflow.com/questions/1510840/where-does-android-emulator-store-sqlite-database

Aaron Saunders