In android how can I read database which is in DDMS? I want to see the data of my database which is stored in DDMS can I do this?
The best option is to use Motodev Studio. It allows you to connect to the database on the emulator/devices and do sql queries and so on.
Otherwise you can also download the database to your developer machine and then connect to it and query it.
Or you can log in to the device/emulator with
adb shell
and use sqlite3 to connect and execute queries on the command line.