- turn on the debug mode of your device
- connect your Android device via adb-usb-drivers of the manufactorer
- install and run your application on the device
- insert, update and delete data
- close the application, to close the database
- open the Android terminal emulator
$ su
$ ls /data/data/com.example.app/databases
run all sql commands with (;) at the end
$ sqlite3 database.db
$ PRAGMA table_info(tablename);
$ SELECT DISTINCT tbl_name from sqlite_master;