如何在android中不以编程方式查看(查看)数据库中存储的值
有人可以帮助我以非编程方式查看存储在数据库中的值吗?使用文件资源管理器和命令提示符?
Can somebody help me to see the values that are stored in a database non-programatically? Using file explorer and command prompt?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
a) 输入 adb shell
b) cd 到您的应用程序目录,数据库文件将位于数据库文件夹下
c) $sqlite3 yourdb_name
d) ## 现在你应该进入命令模式
e) 从 your_tablename 中选择 *;
a) 使用DDMS的文件浏览器
b) 找到数据库文件
c) 将数据库复制到您的 PC
d) 使用任何 sqlite 工具来读取它
祝你好运!!
a) enter adb shell
b) cd to your app directory, database file will under databases folder
c) $sqlite3 yourdb_name
d) ## now you should enter command mode
e) select * from your_tablename;
a) using DDMS's file explorer
b) find the database file
c) copy databases to ypur PC
d) use any sqlite tool to read it
Good luck!!
使用 sqlitebrowser
use sqlitebrowser
您可以使用SQLite库的命令行工具sqlite3(.exe)。
来源:http://www.sqlite.org/sqlite.html
You can use the command line tool sqlite3(.exe) of the SQLite library.
Source: http://www.sqlite.org/sqlite.html
下载sqlite浏览器并浏览您的数据,您可以看到它的表格和数据 使用此博客了解更多信息。
download sqlite browser and browse your data and you can see its tables and its data use this blog to learn more.
是否可以从 Eclipse 中的 DDMS 获取数据库?
我在数据文件夹中搜索该应用程序,但没有找到它。
Is it possible to get the Database from the DDMS in eclipse?
I was searching in the data folder for the application and I didn't find it there.