Is there a command in the Genymotion shell to view my database?

Hi, I try very hard to browse my databases that I create from my Android code. I am using emymator genymotion and I do not see anything from the file manager in the project data folder. Is there a way to view my database from the genymotion shell? Thank.

+4
source share
4 answers

I always remove it from the device and view it using Sqlite Manager in Firefox:

adb pull /data/data/com.yourpackage/databases/yourdb.db
+4
source

, . , Genymotion , :

SQLite Debugger showcase

+6

shell,

1. ( - https://play.google.com/store/apps/details?id=com.jrummy.root.browserfree)

  • Go to your application from / data / data / (PACKAGE NAME) / databases / (YOUR FILE)
0
source

You can display the database from the device using the adb command

adb pull /data/data/com.yourpackage/databases/yourdb.db

it will be copied to the folder that your terminal points to.

0
source

Source: https://habr.com/ru/post/1534745/


All Articles