处理 SQLite 数据库的最佳方法是什么?
我正在做我的毕业设计
它与Fatsecret的卡路里计数器应用具有相同的想法>>>如果你知道的话!
我使用 SQLite 创建了数据库文件,将其复制到资产文件夹中,然后编写了以下链接中的代码:
http://www.reigndesign.com/ blog/using-your-own-sqlite-database-in-android-applications/最近读到一段代码,只使用openOrCreateDatabase(name, mode,factory)来处理与数据库
我可以在我的例子中使用这个吗?哪个代码更好?
此致
I am working on my graduation project
It has the same idea as calories counter application of Fatsecret >> if you know!
I created the database file using SQLite, I copied it into the asset folder, and then wrote the code as in this link:
http://www.reigndesign.com/blog/using-your-own-sqlite-database-in-android-applications/recently I read a code that only use openOrCreateDatabase(name, mode, factory) to deal with the database
Can I use this in my case, which code is better?
Best Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
关于如何在 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