前端之家收集整理的这篇文章主要介绍了
debug android:连接到手机上的sqlite db,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是的,您可以使用
this manual连接到您的设备(或仿真器).
使用adb连接到模拟器:
$adb -s emulator-5554 shell
然后使用您需要的数据库启动sqlite3应用程序:
# sqlite3 /data/data/com.example.google.RSS.RSSexample/databases/RSSitems.db
然后,您可以运行所需的任何SQL查询.
原文链接:https://www.f2er.com/android/308633.html