如何在android中不以编程方式查看(查看)数据库中存储的值

发布于 2024-11-04 05:25:39 字数 49 浏览 1 评论 0原文

有人可以帮助我以非编程方式查看存储在数据库中的值吗?使用文件资源管理器和命令提示符?

Can somebody help me to see the values that are stored in a database non-programatically? Using file explorer and command prompt?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

别闹i 2024-11-11 05:25:39
  1. 使用命令行
    a) 输入 adb shell
    b) cd 到您的应用程序目录,数据库文件将位于数据库文件夹下
    c) $sqlite3 yourdb_name
    d) ## 现在你应该进入命令模式
    e) 从 your_tablename 中选择 *;
  2. 使用 ddms
    a) 使用DDMS的文件浏览器
    b) 找到数据库文件
    c) 将数据库复制到您的 PC
    d) 使用任何 sqlite 工具来读取它

祝你好运!!

  1. using command line
    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;
  2. using ddms
    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!!

贪了杯 2024-11-11 05:25:39

您可以使用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

也只是曾经 2024-11-11 05:25:39

下载sqlite浏览器并浏览您的数据,您可以看到它的表格和数据 使用此博客了解更多信息。

download sqlite browser and browse your data and you can see its tables and its data use this blog to learn more.

や莫失莫忘 2024-11-11 05:25:39

是否可以从 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文