static final String dbname="demoDB";
static final String tableName="Employees";
static final String colID="EmployeeID";
然后
public void onCreate(sqliteDatabase db) {
// Todo Auto-generated method stub
db.execsql("CREATE TABLE "+tableName+" ("+colID+" INTEGER PRIMARY KEY AUTOINCREMENT, "+
colName+" TEXT, "+colAge+" Integer);");
}
我想像这样选择数据库中的所有记录并在gridview中显示它们:
sqliteDatabase db=this.getWritableDatabase();
Cursor cur= db.rawQuery("Select "+colName+", "+colAge+" from "+tableName, new String [] {});
String [] from=new String []{DatabaseHelper.colName,DatabaseHelper.colAge};
int [] to=new int [] {R.id.colName,R.id.colAge};
SimpleCursorAdapter sca=new SimpleCursorAdapter(this,R.layout.gridrow,c,from,to);
GridView grid=(GridView)findViewById(R.id.grid);
grid.setAdapter(sca);
但我收到以下例外:
java.lang.IllegalArgumentException: column '_id' does not exist.
db表没有名为’_id’的列
所以这段代码出了什么问题
谢谢
解决方法:
选择EmpId作为_id
因为适配器需要一个名为_id的列,如你所说
谢谢
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。