处理 SQLite 数据库的最佳方法是什么?

发布于 2024-10-20 15:47:43 字数 522 浏览 1 评论 0原文

我正在做我的毕业设计
它与Fatsecret卡路里计数器应用具有相同的想法>>>如果你知道的话!

此致

I am working on my graduation project
It has the same idea as calories counter application of Fatsecret >> if you know!

Best Regards

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

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

发布评论

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

评论(1

幸福丶如此 2024-10-27 15:47:43

关于如何在 android 中使用 sqllite 有很好的基本文档。查看 http://developer.android.com/guide/topics /data/data-storage.html#db 获取有关如何在应用程序中使用 sqllite 的概述。
基本思想是扩展 http://developer.android.com/reference/ android/database/sqlite/SQLiteOpenHelper.html 类,并从那里对数据库执行其余的 CRUD 操作。
我还忘记提及:最好避免使用 openorcreatedatabase 方法,建议继续使用 sqliteopenhelper

There is good basic documentation on how to work with sqllite in android. Check out http://developer.android.com/guide/topics/data/data-storage.html#db to get an overview on how to use sqllite in your application.
Basic idea is to extend http://developer.android.com/reference/android/database/sqlite/SQLiteOpenHelper.html class and from there do the rest of CRUD operations on your database.
Also i forgot to mention: preferably avoid using openorcreatedatabase method, recommendation is to keep using sqliteopenhelper instead

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