Android SQLite3
Just notes for myself, hopefully I remember to clean this up.
1. Accessing the database
a. Navigate to tools folder of android sdk android-sdk-windows/tools
b. type adb shell (to access Android's shell)
c. type cd data/data/[package name]/databases
d. type sqlite3 [your database name]
SQL Commands
.tables - display all the table names
.schema [table name] - display create statement for the table
0 comments:
Post a Comment