我对此代码有疑问:
SimpleCursorAdapter adapter;
adapter = new SimpleCursorAdapter(context, R.layout.activity_view_medication, cursor, from, toViewMed)
当我运行我的项目时,logcat会显示:
java.lang.IllegalArgumentException: column '_id' does not exist
代码:
@Override
protected void onCreate (Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
context=this;
// Get ListView object from xml
lv = (ListView)findViewById(R.id.list);
myDb = new DatabaseHelper(this);
Create_Alarm();
populateListView();
}
public void populateListView(){
myDb.getAllData();
Cursor cursor = myDb.getAllData();
String[] from = new String[] {myDb.COL_2, myDb.COL_3 };
int[] toViewMed = new int[] {R.id.txtName, R.id.txtQuantity};
SimpleCursorAdapter adapter;
adapter = new SimpleCursorAdapter(context, R.layout.activity_view_medication, cursor, from, toViewMed) {
@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {
//return null;
return LayoutInflater.from(context).inflate(R.layout.activity_view_medication, parent, false);
}
@Override
public void bindView(View view, Context context, Cursor cursor) {
// Find fields to populate in inflated template
TextView medicine = (TextView) view.findViewById(R.id.txtName);
TextView quantity= (TextView) view.findViewById(R.id.txtQuantity);
// Extract properties from cursor
String from = cursor.getString(cursor.getColumnIndexOrThrow("from"));
int toViewMed = cursor.getInt(cursor.getColumnIndexOrThrow("toViewMed"));
// Populate fields with extracted properties
medicine.setText(from);
quantity.setText(String.valueOf(toViewMed));
}
};
// Assign adapter to ListView
lv.setAdapter(adapter);
}
答案 0 :(得分:0)
CursorAdapters 需要一个_id
列,因为它们依赖于它。
快速修复:添加到您的查询... , rowID AS _id, ...
(显然不是点数)
rowID
是一个特殊的"自动"字段确实是缺少_id
字段的替代。
在SQLite中,表行通常具有64位有符号整数ROWID,它在同一个表中的所有行中都是唯一的。 (没有ROWID表是个例外。)
您可以使用特殊列名称ROWID, ROWID 或OID之一访问SQLite表的ROWID。除非您声明普通表列使用其中一个特殊名称,否则使用该名称将引用声明的列而不是内部ROWID。
如果表包含INTEGER PRIMARY KEY类型的列,则该列将成为ROWID的别名。然后,您可以使用四个不同的名称中的任何一个来访问ROWID,上面描述的原始三个名称或给予INTEGER PRIMARY KEY列的名称。所有这些名称都是彼此的别名,在任何情况下都同样有效。
答案 1 :(得分:0)
您还需要签入数据库。
试试这个
示例:
<强> MyDatabase.java 强>
public class MyDatabaseHelper extends SQLiteOpenHelper {
public static final rowid_id="_id";
......
public void onCreate(SQLiteDatabase db) {
db.execSQL("create table " + TABLE_NAME + " ( " + rowid_id + " INTEGER PRIMARY KEY ,Name TEXT,Weather TEXT, Date DATETIME, Status Text, TimeIn_Info DATE TIME, TimeOut_Info DATETIME)");