在windows运行命令中操纵数据库
Microsoft Windows [版本 10.0.10586] (c) 2015 Microsoft Corporation。保留所有权利。
C:\Users\dell>cd D:\workspace\android\sdk\tools【eclipse中关联的sdk文件中的tools文件所在位置】 C:\Users\dell>D: D:\workspace\android\sdk\tools>adb shell # cd data/data/com.xml/ databases cd data/com.xml/ databases # ls ls person.db # sqlite3 person.db sqlite3 person.db SQLite version 3.6.22 Enter ".help" for instructions Enter SQL statements terminated with a ";" sqlite> select *from person; select *from person; 1|alice sqlite> |