java android sqlite查询数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java android sqlite查询数据相关的知识,希望对你有一定的参考价值。
getContact()
// Getting single contact
public Contact getContact(int id) {
SQLiteDatabase db = this.getReadableDatabase();
Cursor cursor = db.query(TABLE_CONTACTS, new String[] { KEY_ID,
KEY_NAME, KEY_PH_NO }, KEY_ID + "=?",
new String[] { String.valueOf(id) }, null, null, null, null);
if (cursor != null)
cursor.moveToFirst();
Contact contact = new Contact(Integer.parseInt(cursor.getString(0)),
cursor.getString(1), cursor.getString(2));
// return contact
return contact;
}
以上是关于java android sqlite查询数据的主要内容,如果未能解决你的问题,请参考以下文章
关于android中使用SQLite数据库的查询基本操作.贴上代码.
如何将 SQLite 数据库(SQLite Firefox 扩展)连接到 Android 应用程序,以便 android 2.1 查询并插入数据库
Android : SQLite 版学生系统
Xamarin Android C# SQLite 参数查询
如何找出在 Android 中发送到 SQLite 的查询?
请问下android studio中的数据库sqlite怎么打开来查询编辑