Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Genymotion shell is there a command to view my database?

Hi i am pretty struggling on trying to view my databases that I create from my android code. I am using a genymotion emualator and I cant see anything from the filemanager in my project's data folder. Is there any way to view my database from the genymotion shell ? Thanks.

like image 368
user3449550 Avatar asked Dec 25 '22 11:12

user3449550


1 Answers

You can install an app in your emulator which lets you browse installed apps for databases. Root must be available, and since Genymotion virtual devices are rooted, you can follow the next steps:

  1. Start your Genymotion virtual device.
  2. Download SQLite Debugger APK using any APK downloader service.
  3. Drag&drop the downloaded APK file to your already running Genymotion virtual device.
  4. Start SQLite Debugger in your emulator and select the option "App".
  5. A popup appears with all the installed apps. Select one, then view, update or delete its database.

SQLite Debugger showcase

like image 81
txedo Avatar answered Jan 19 '23 04:01

txedo