Android - viewing SQLite databases on device?

前端 未结 4 753
春和景丽
春和景丽 2020-12-19 04:36

Is there any tool that will allow me to browse databases on my Android device? Something like Sql Management Studio - you know GUI tool that displays databases, tables, row

4条回答
  •  死守一世寂寞
    2020-12-19 04:50

    First of all, you will not be able to 'browse' the databases unless you logged in as root (there are several tutorials out there that explains how to get root on Android). Secondly, you can use adb shell (adb is included into the SDK), and when you are there you can use the sqlite3 command to browse the databases.

    Of course, sqlite3 does not provide a GUI... but, you can copy the database you want to browse to your computer and use any GUI for sqlite there.

提交回复
热议问题