使用光标获取字段值
Posted
技术标签:
【中文标题】使用光标获取字段值【英文标题】:Get the field value with a Cursor 【发布时间】:2010-10-28 13:10:57 【问题描述】:我正在创建一个应用程序,但我遇到了Cursor
的问题。我有一个SQLiteDatabase
,当我尝试使用此函数获取值时,它会返回一个Cursor
:
public Cursor fetchOption(long rowId) throws SQLException
Cursor mCursor = mDb.query(true, DATABASE_TABLE, new String[] KEY_ROWID,
KEY_TITLE, KEY_BODY, KEY_ROWID + "=" + rowId, null,
null, null, null, null);
if (mCursor != null)
mCursor.moveToFirst();
return mCursor;
不知道如何获取Cursor
中字段的值。如果我这样做:
String a = mOptionDb.fetchOption(0).getColumnName(0).toString();
String b = mOptionDb.fetchOption(0).getColumnName(1).toString();
String c = mOptionDb.fetchOption(0).getColumnName(2).toString();
我只获得列的名称 (_id, title, body
) 而不是值。关于如何实现这一点的任何建议?
【问题讨论】:
【参考方案1】:我认为您可以忘记检查 null。
改为检查是否有数据,然后使用游标访问列:
Cursor cursor = fetchOption(0);
if (cursor.moveToFirst()) // data?
System.out.println(cursor.getString(cursor.getColumnIndex("title"));
cursor.close(); // that's important too, otherwise you're gonna leak cursors
阅读 android 教程可能也很有意义。记事本教程似乎符合要求:http://developer.android.com/guide/tutorials/notepad/index.html
【讨论】:
感谢您的帮助。现在它起作用了。我忘记了每次关闭光标的访问... 每次遇到这个问题,我回到这里才意识到我忘记了 cursor.moveToFirst()。谢谢!【参考方案2】:您可以使用Cursor
的get*
方法从结果中检索值:
long id = cursor.getLong(cursor.getColumnIndex("_id"));
long title = cursor.getString(cursor.getColumnIndex("title"));
...
显然,更好的做法是使用常量(通常由 ContentProviders 提供)而不是使用硬编码字符串调用 getColumnIndex
。
【讨论】:
与部分: int a = mOptionDb.fetchOption(0).getColumnIndex("title");我得到“1”。但是使用 mOptionDb.fetchOption(0).getString(a);我收到错误: ERROR/AndroidRuntime(628): Uncaught handler: thread main exiting due to unaught exception ERROR/AndroidRuntime(628): android.database.CursorIndexOutOfBoundsException: Index 0 requested, with a size of 0 就像没有数据?!【参考方案3】:你可以使用这个机制。
Cursor record=db.test(finalDate);
if(record.getCount()!=0)
if(record.moveToFirst())
do
Imgid1=record.getString(record.getColumnIndex(Database.PHOTO));
while(record.moveToNext());
record.close();
【讨论】:
以上是关于使用光标获取字段值的主要内容,如果未能解决你的问题,请参考以下文章