adb shell使用

adb shell可以用来操纵数据库

1、在cmd界面 输入adb shell 进入adb shell

2、使用cd 切换到工作目录;使用ls查看文件

3、使用sqlite3+数据库名字 打开某个数据库

4、操纵数据库:使用.schema查看数据库创建语句;使用.table查看表,使用select * from XXX;表查询

原文地址:https://www.cnblogs.com/llxbl/p/6242617.html