First we can try this.Program "sqlite browser" can shows a data in
the database. You can download it
here(http://sourceforge.net/projects/sqlitebrowser/). It is easy to use.
2.. Open cmd go to programme tools ...
3. In the Eclipse look at the File Explorer tab (near the Console tab). Or look at menu "Window -> Show View -> Other... -> File Explorer". Emulator should be run. In the File Explorer window go to the folder "data/data/[your_package_name]/databases/". There you can find your database. You can export it to the your computer. At the right top corner of the window there is a button "pull a file from device". Select database, click that button and save a database on the computer.
Then you can downlaod Sqlite online brower view or plugin in your web browser. Upload in database from your computer into Online Sqlite Brower .
2.. Open cmd go to programme tools ...
D:\Android Setup\android-sdk_r17-windows\android-sdk-windows
\platform-tools>adbshell
# cd data
cd data
# cd data
cd data
# cd com.maid.testnews(package name )
cd com.maid.testnews
# cd databases
cd databases
# sqlite3 Maidnews(Database name )
sqlite3 Maidnews
SQLite version 3.6.22
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> select * from maidtitle;(table name )
Saw your result ....3. In the Eclipse look at the File Explorer tab (near the Console tab). Or look at menu "Window -> Show View -> Other... -> File Explorer". Emulator should be run. In the File Explorer window go to the folder "data/data/[your_package_name]/databases/". There you can find your database. You can export it to the your computer. At the right top corner of the window there is a button "pull a file from device". Select database, click that button and save a database on the computer.
Then you can downlaod Sqlite online brower view or plugin in your web browser. Upload in database from your computer into Online Sqlite Brower .