You can get your sqlite databases even if your device is not deployed. Here's how:
Step 1 - Open the adb Command Prompt
Go to android-sdk â platform-tools folder and open a command prompt.
Step 2 - Backup
Enter the following line at the command prompt:
adb backup -f my_backup.ab -noapk com.mypackage.name
Unlock the device and you will see something like this:

Confirm backup operation without entering password
Note. . This will only work on devices running Android 4.0 and higher.
Step 3 - Unpacking the Backup
You should now see a file called my_backup.ab in the platform-tools folder. This is a compressed and encrypted android backup file that we need to extract now. The following tool called All Android Backup Extractor .
Now extract the *.zip file in Android Backup Extractor and copy the *.ab file to this directory. And run the following command:
java -jar abe.jar unpack my_backup.ab my_backup.tar
Then a new archive my_backup.tar will appear. Open it, go to the /db/ directory. There you will see all your databases. Done!
source share