I downloaded the jar file and placed it in /plugins directory. Restarted eclipse as asked for eclipse to load new plugin. Opened file explorer and navigated to /package.name/databases/file.db but not able to open it in the plugin. It appears unclickable. What to do here? Check screenshot. 
-
1whats the name of the plugin ?Alexander Fuchs– Alexander Fuchs2012-08-04 08:20:08 +00:00Commented Aug 4, 2012 at 8:20
-
coderzheaven.com/2011/04/18/sqlitemanager-plugin-for-eclipseAyush Goyal– Ayush Goyal2012-08-04 08:22:20 +00:00Commented Aug 4, 2012 at 8:22
6 Answers
From the emulator unistall the app. Then in the code, when you create the database, name it with extension. For e.g. if your database name is MyDB, then write it as MyDB.db This will enable the Open File Icon on sqlite manager on eclipse.
1 Comment
As from your Screenshot it is clear that your database doesn't have an extension currently.
Therefore it is not allowing to open the database file but if you can see here 
You can delete the database from here using the "-" option delete both the database and .journal file.
Add .db extension where you are creating the ordersManager database and run the application again.(Remeber to create the database)
when you will again come to DDMS to see your database and click on ordersManager.db file the icon which i have circled will become enabled then click on it and you will be able to read data.
Also you can pull the database from device and use something like SQLLiteBrowser
Comments
Try this download SQLite3 manager from this http://sqlitemanager.en.softonic.com/ . And install it.And pull your database (i.e. file.db ) from DDMS to now location and try to open it with using Sqlite3 manager.
And you will be able to see your database contents.
I think this is what you want.
Comments
Try this..
Download the Android Sqlite Manager here.
Add it to your eclipse > dropins Directory.
Restart eclipse and go to DDMS.
Select .db file in DDMS Perspective
click Sqlite Manger icon.
Now you're able to open the .db file.