Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I open a .db file generated by eclipse(android) form DDMS-->File explorer-->data--->data-->packagename-->database?

The .db file is generated from eclipse(android) form DDMS-->File explorer-->data--->data-->package name-->database. Then I select the database and click "push a file from device", and save it as .db file. How can I view this database?

like image 500
Nidhin T T Avatar asked Mar 18 '13 07:03

Nidhin T T


2 Answers

If I Understood correctly you need to view the .db file that you extracted from internal storage of Emulator. If that's the case use this

http://sourceforge.net/projects/sqlitebrowser/

to view the db.

You can also use a firefox extension

https://addons.mozilla.org/en-us/firefox/addon/sqlite-manager/

EDIT: For online tool use : https://sqliteonline.com/

like image 51
Parvaz Bhaskar Avatar answered Oct 12 '22 08:10

Parvaz Bhaskar


One of the way to browse your database is to use questoid sqlite manager.

# 1. Download questoid manager from this link .

# 2. Drop this file into your eclipse --> dropins.

# 3. Restart your eclipse.

# 4. Now go to your file explorer and click your database. you can find a blue database icon enabled in the top right corner.

# 5. Double click the icon and you can see ur inserted fields/tables/ in the database

like image 24
Rethinavel Avatar answered Oct 12 '22 07:10

Rethinavel