如何在android中从数据库(SQLite)中选择特定记录?
大家好,我是 Android 新手,所以我对从表中检索数据有点困惑...我应该使用 put(cv.put(DatabaseHelper.TITLE, title);) 还是 put(cv.put(DatabaseHelper.TITLE, title);) >get(cv.get(DatabaseHelper.TITLE, title);) 从我的班级检索数据。谢谢
Hello Everyone I am very new bee in android, so I am little confused on retrieving data from table... Should i use put(cv.put(DatabaseHelper.TITLE, title);) or get(cv.get(DatabaseHelper.TITLE, title);) to retrieve data from my class. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据所提供的信息,我的最佳答案:
使用 get 检索(即获取)数据。
另外,请查看记事本教程,了解如何使用记事本来自 Android 应用程序的数据库。
My best answer based on the information provided:
Use get to retrieve, i.e., get, data.
Also, take a look at the notepad tutorial for a decent introduction to using databases from an Android app.
我更喜欢
get
来检索数据以获取更多信息 检查下面的链接:
它解释了有关 sqlite dataabse 与 android
http://droidreign.com/2010/10/dev-tutorials-android-sqlite-database-basics/
I prefer
get
to retrieve datafor more info Check below link:
Its explaining all basics about sqlite dataabse with android
http://droidreign.com/2010/10/dev-tutorials-android-sqlite-database-basics/