1. E:\Android\android-sdk-windows\platform-tools "Place the path of the Adb.exe file in path, set the environment variable"
2. Adb-s emulator-5554 (simulator ID) shell into the simulator data management
3. LS: View data, CD: Switch directory, into the Data/data/com.ning.keypass (app package name) path, you can see Keypass.db (database file created in the code);
4. Sqlite3 Keypass.db (the name of the database created in the code, must be all written to, with the suffix, if the input name does not exist, you will create a new one)
Below are some of the help commands for SQLite that can be tapped.
5. Several frequently used SQLite commands:
. exit: Exit the current database (do not forget the previous point);
The. Database displays the current databases
. Tables View data tables in the current database
After you see the table, you can write SQL, query, or modify the table:
SQLite database adb from configuration to query table data throughout the process-----dedicated to beginners