Cursor cursor = db.query(true, "user", new String[]{"id","mode"}, "id=?", new String[]{"1"}, null, null, "1,2", null); cursor.moveToNext();
如上,
在用数据库的Cursor的moveToNext方法时,出现了题中的报错。
经百度,发现这两句需要放在public方法中才行。放入public void onCreate() 方法中之后错误消失。
本文共 298 字,大约阅读时间需要 1 分钟。
Cursor cursor = db.query(true, "user", new String[]{"id","mode"}, "id=?", new String[]{"1"}, null, null, "1,2", null); cursor.moveToNext();
如上,
在用数据库的Cursor的moveToNext方法时,出现了题中的报错。
经百度,发现这两句需要放在public方法中才行。放入public void onCreate() 方法中之后错误消失。
转载于:https://www.cnblogs.com/larrylawrence/p/3429676.html