这是我的简单游标适配器的代码。
public class CursorList extends ListActivity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
DatabaseAdapter da = new DatabaseAdapter(this, "mydb.sqlite");
da.open();
Cursor cur = da.fetchAllRecords("Doctors", new String[]{"FirstName"});
startManagingCursor(cur);
cur.moveToFirst();
do {
Log.v("Info", cur.getString(cur.getColumnIndex("FirstName")));
} while(cur.moveToNext());
cur.moveToFirst();
String[] from = new String[]{"FirstName"};
int[] to = new int[]{R.id.row};
SimpleCursorAdapter sca = new SimpleCursorAdapter(this, R.layout.row_item, cur, from, to);
setListAdapter(sca);
}
}
数据记录在日志中正确显示,但代码在到达
时停止工作SimpleCursorAdapter sca = new SimpleCursorAdapter(this, R.layout.row_item, cur, from, to);
线。
我得到的错误是:
ERROR/AndroidRuntime(26746): Uncaught handler: thread main exiting due to uncaught exception
ERROR/AndroidRuntime(26746): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.arnab.cursorlist/com.arnab.cursorlist.CursorList}:
java.lang.IllegalArgumentException: column '_id' does not exist
我哪里错了?
为什么它会出现“_id”列不存在的错误?它是我们必须在表中使用的必要列吗?
编辑:
当我将游标相关代码放在try catch块中时,如下所示:
try {
SimpleCursorAdapter sca = new SimpleCursorAdapter(this, R.layout.row_item, cur, from, to);
setListAdapter(sca);
}
catch(Exception E) {
Log.v("Error", E.getMessage());
}
我收到消息:
VERBOSE/Error(1026): column '_id' does not exist
@Rasel:这是fetchAllRecords
方法
public Cursor fetchAllRecords(String table, String columns[]) {
return mDb.query(table, columns, null, null, null, null, null);
}
答案 0 :(得分:2)
为什么它会出现“_id”列不存在的错误?它是我们必须在表中使用的必要列吗?
是,如果要在游标适配器中使用数据库信息。适配器将其用于内部目的。您的表格必须包含“_id”列,并且您必须在查询中选择它(因此它位于Cursor
结果集中)。您无需在ListView
。
为后人修改
您可以SELECT
将自己的“ID”列添加为“_id”,而不是实际添加“_id”列,而且它的工作方式也相同。
答案 1 :(得分:0)
在try catch块中编写Cursor相关代码。您的问题将得到解决。检查创建表时您输入的是不同的列而不是'_id'
答案 2 :(得分:0)
您需要在投影中包含表格_id。列表游标适配器需要_id来跟踪行。您不必在任何地方实际显示它或使用它,但光标需要包含该列。还有一个名为_id的主键列在每个安卓表中都是必需的。