simpleCursorAdapter的一个问题

 

在使用simpleCursorAdapter显示sqlite数据时,在new创建阶段就出现 java.lang.IllegalArgumentException: column _id’ does not exist 错误。查询手册后,发现Cursor中未包含名为_id的列,而该要求是父类CursorAdapter的要求:

遇到这种情况,可以在查询语句中伪造一列名为_id的字段。 

建议:sqlite的主键命名时,命名为_id,所以,当你用到sqlitesimpleCursorAdapter时,必须把数据表的主键命名为_id

 

你可能感兴趣的:(simpleCursorAdapter的一个问题)