我正在尝试从具有表(带有 _id 字段)的数据库中检索游标,但无法创建 simplecursoradapter 错误说
SqlliteException: no such column: _id
但是我的数据库类有什么问题:
//The columns we'll include in the dictionary table
public static final String COLUMN_ID = "_id";
public static final String COL_WORD = "WORD";
public static final String COL_DEFINITION = "DEFINITION";
private static final String FTS_TABLE_CREATE =
"CREATE VIRTUAL TABLE " + FTS_VIRTUAL_TABLE +
" USING fts3 (" + COLUMN_ID + " integer primary key autoincrement, " +
COL_WORD + ", " +
COL_DEFINITION + ")";
并返回光标
public Cursor getWordMatches(String query, String[] columns) {
String selection = COL_WORD + " MATCH ?";
String[] selectionArgs = new String[] {query+"*"};
return query(selection, selectionArgs, columns);
}
private Cursor query(String selection, String[] selectionArgs, String[] columns) {
SQLiteQueryBuilder builder = new SQLiteQueryBuilder();
builder.setTables(FTS_VIRTUAL_TABLE);
String[] col = new String[] {COLUMN_ID, COL_WORD};
//ubacio null - col
Cursor cursor = builder.query(mDatabaseOpenHelper.getReadableDatabase(),
col, selection, selectionArgs, null, null, null);
if (cursor == null) {
return null;
} else if (!cursor.moveToFirst()) {
cursor.close();
return null;
}
return cursor;
}
这是我显示 ListView 的活动
//query the db class method getWordMatches()
Cursor c = db.getWordMatches(query, null);
displayWords(c);
}
}
public void displayWords(Cursor c){
// Creates a new SimpleCursorAdapter
SimpleCursorAdapter mCursorAdapter = new SimpleCursorAdapter(
getApplicationContext(), // The application's Context object
android.R.layout.simple_list_item_1, // A layout in XML for one row in the ListView
c, // The result from the query
new String[] {DatabaseTable.COL_WORD}, // A string array of column names in the cursor
new int[] { android.R.id.text1 }); // An integer array of view IDs in the row layout
// Sets the adapter for the ListView
setListAdapter(mCursorAdapter);
}
该教程来自http://developer.android.com/training/search/search.html