Reply To: how to access sqlite database in a new application on android device ? Lincoln Burrows ~ Modified: 10-Sep-2015 ~ ~ 1 Minute Reading Home › Forums › how to access sqlite database in a new application on android device ? › Reply To: how to access sqlite database in a new application on android device ? September 10, 2015 at 10:01 am #620 Score: 0 Lincoln BurrowsModerator Karma: 16 pts you can try this: 1. adb shell 2. cd /go/to/databases 3. sqlite3 database.db 4. in the prompt, type .tables; .tables this will give you all the tables in the database.db 5. select * from table1 Go