$ adb -d shell $ run-as your.package.name $ cat /data/data/your.package.name/databases/yourdatabasename >/sdcard/yourdatabasenameThis will copy your app's SQLite db file to the SD card's root directory. From there, you can copy the file to your computer any way you like.
Props to this SO answer!