在android中使用什么方法从SQLite检索数据?

发布于 2024-11-03 02:00:16 字数 74 浏览 1 评论 0原文

大家好,我是 ANDROID 的新手,所以在从 SQLite 检索数据时遇到问题,任何人都可以帮助我知道使用什么方法来做到这一点。谢谢

Hello Everyone I am new bee in ANDROID so am getting problem in retrieving data from SQLite ,can anyone HELP me to know what method to be used to do so. Thanks

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

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

发布评论

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

评论(1

奶气 2024-11-10 02:00:16

我发现并使用的最佳 Android 数据库示例可在 devx.com 上找到

完成该教程后,您将会得到一些更好的想法。检索数据的步骤如下:

  1. 使用示例中的open方法打开数据库连接。
  2. 使用 db.query 方法执行查询。它将返回一个指向返回记录的游标,然后迭代该游标以遍历返回的记录。

希望有帮助。

The best database example for Android that I found and used is available on devx.com

After going through that tutorial you will get some better idea. Steps to retrieve data are as follows:

  1. open database connection using the open method in the example.
  2. execute the query using db.query method. that will return a cursor to the returned records and then iterate the cursor to get through the returned records.

Hope it helps.

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