public List<NotepadBean> query(){ List<NotepadBean> list=new ArrayList<NotepadBean>(); Cursor cursor=sqLiteDatabase.query(DBUtils.DATABASE_TABLE,null,null,null, null,null,DBUtils.NOTEPAD_ID+" desc"); if(cursor!=null) { while (cursor.moveToNext()) { NotepadBean noteInfo = new NotepadBean(); String id = String.valueOf(cursor.getInt (cursor.getColumnIndex(DBUtils.NOTEPAD_ID))); String content = cursor.getString(cursor.getColumnIndex (DBUtils.NOTEPAD_CONTENT)); String time = cursor.getString(cursor.getColumnIndex (DBUtils.NOTEPAD_TIME)); noteInfo.setId(id); noteInfo.setNotepadContent(content); noteInfo.setNotepadTime(time); list.add(noteInfo); } cursor.close(); } return list; } 以上代码出现这些问题Value must be ≥ 0怎么修改代码,请提供完整代码
时间: 2024-03-07 14:50:16 浏览: 442
可以在调用 `cursor.getInt()` 之前先调用 `cursor.getColumnIndex()` 确保该列存在,例如:
```
public List<NotepadBean> query() {
List<NotepadBean> list = new ArrayList<NotepadBean>();
Cursor cursor = sqLiteDatabase.query(
DBUtils.DATABASE_TABLE,
null,
null,
null,
null,
null,
DBUtils.NOTEPAD_ID + " desc"
);
if (cursor != null) {
while (cursor.moveToNext()) {
NotepadBean noteInfo = new NotepadBean();
int idIndex = cursor.getColumnIndex(DBUtils.NOTEPAD_ID);
if (idIndex >= 0) {
String id = String.valueOf(cursor.getInt(idIndex));
noteInfo.setId(id);
}
// 同理,需要检查其他列是否存在
int contentIndex = cursor.getColumnIndex(DBUtils.NOTEPAD_CONTENT);
if (contentIndex >= 0) {
String content = cursor.getString(contentIndex);
noteInfo.setNotepadContent(content);
}
int timeIndex = cursor.getColumnIndex(DBUtils.NOTEPAD_TIME);
if (timeIndex >= 0) {
String time = cursor.getString(timeIndex);
noteInfo.setNotepadTime(time);
}
list.add(noteInfo);
}
cursor.close();
}
return list;
}
```
此外,需要注意数据库表中相关列的值是否符合预期,例如该列是否设置为非负数等。如果还有其他问题,可以提供完整的错误信息和代码,方便更好地解决问题。
阅读全文