Is there an SQLite database viewer tool in Eclipse?

后端 未结 4 1061
醉话见心
醉话见心 2021-02-05 09:59

I am using Eclipse for Android programming. Is there a tool for view an SQLite database in the emulator?

4条回答
  •  北恋
    北恋 (楼主)
    2021-02-05 10:11

    follow below way -

    1. download SQLITE MANAGER JAR .
    2. 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

    1. now restart the eclipse
    2. go to DDMS
    3. go to file explorer
    4. browse your database file at data -> data -> com.myproject -> databases -> myproject.db
    5. then you will se a database manager icon at to of file explorer
    6. by clicking this you can see all of your data tables.

    to know more follow LINK

    Thanks.

提交回复
热议问题