Hope this helps you
Using Terminal First point your location where andriod sdk is loacted
eg: C:\Users\AppData\Local\Android\sdk\platform-tools>
then check the list of devices attached Using
adb devices
and then run this command to copy the file from device to your system
adb -s YOUR_DEVICE_ID shell run-as YOUR_PACKAGE_NAME chmod -R 777 /data/data/YOUR_PACKAGE_NAME/databases && adb -s YOUR_DEVICE_ID shell "mkdir -p /sdcard/tempDB" && adb -s YOUR_DEVICE_ID shell "cp -r /data/data/YOUR_PACKAGE_NAME/databases/ /sdcard/tempDB/." && adb -s YOUR_DEVICE_ID pull sdcard/tempDB/ && adb -s YOUR_DEVICE_ID shell "rm -r /sdcard/tempDB/*"
You can find the database file in this path
Android\sdk\platform-tools\tempDB\databases