Is There An Sqlite Database Viewer Tool In Eclipse?
Solution 1:
See blog post Browse an Android Emulator SQLite Database in Eclipse.
Solution 2:
Solution 3:
Follow the below steps:
Download the .jar file
Place the plugin .jar file in your Eclipse plugins folder (e.g. /usr/lib/eclipse/plugins)
Restart Eclipse
Start up an Android Emulator with debugging in Eclipse
Switch to the DDMS Perspective in Eclipse
Go to the 'File Explorer' tab to locate your device's database file
Navigate to: e.g. 'data -> data -> com.myproject -> databases -> myproject
Open the database file in Questoid (see screenshot)
Switch to the 'Questoid SQLite Browser' tab that appears (mine appears next to LogCat by default)
Switch to the 'Browse Data' sub tab Select your table from the drop down menu Browse your data here and onward into the digital sunset
Solution 4:
follow below way -
- download SQLITE MANAGER JAR .
- put the jar file into your eclipse/dropins/ folder.
if(ubuntu user)
you can find your dropins folder at usr/share/eclipse/dropins if you don't have permission to paste file at location then opent your terminal (ctrl+alt+T) and type command sudo nautilus then press enter the new window will open then you can paste the jar at the dropins folder
- now restart the eclipse
- go to DDMS
- go to file explorer
- browse your database file at data -> data -> com.myproject -> databases -> myproject.db
- then you will se a database manager icon at to of file explorer
- by clicking this you can see all of your data tables.
to know more follow LINK
Thanks.
Post a Comment for "Is There An Sqlite Database Viewer Tool In Eclipse?"