奇怪的nullPointerException错误 - 与数据库相关

时间:2012-03-24 09:18:35

标签: java android database sqlite nullpointerexception

我正在学习如何使用sqlite数据库,我试图在我制作的游戏中实现一个高分系统。当我尝试显示分数时读取行有效,但是当我尝试使用相同的想法读取值以在以下方法中比较它们时 - 它给出了空指针异常错误。

private void checkIfHighScore(int currentScore) {
    Cursor note;
    int rowScore;
    String moveName, moveScore, newName;

    for (long i=1;i<6;i++){
        note = mDbHelper.fetchNote(i);
        startManagingCursor(note);
        rowScore=Integer.parseInt(note.getString(note.getColumnIndexOrThrow(ScoresDbAdapter.KEY_BODY)));
        if (currentScore<rowScore){
            for (long j=5;j>i;j--){
                note = mDbHelper.fetchNote(j-1);
                startManagingCursor(note);
                moveName=note.getString(note.getColumnIndexOrThrow(ScoresDbAdapter.KEY_TITLE));
                moveScore=note.getString(note.getColumnIndexOrThrow(ScoresDbAdapter.KEY_BODY));
                mDbHelper.updateNote(j, moveName, moveScore);
            }
            newName="a"; //for testing 
            mDbHelper.updateNote(i, newName, Integer.toString(currentScore));
            break;
        }
    }

}

我知道错误是在for循环之后的行 - 但我不知道是什么导致它失败。我的数据库有5行数据(已验证)。 有谁知道是什么原因导致我的错误?那时我的头撞在墙上2个小时。谢谢!

1 个答案:

答案 0 :(得分:0)

除了代码之外,您还可以执行类似

的操作
String selectQuery = "SELECT MAX(COLUMN_NAME) FROM " + TABLE_NAME;
SQLiteDatabase db = this.getWritableDatabase();
Cursor cursor = db.rawQuery(selectQuery, null);
if(cursor.moveToFirst(){
   rowScore = Integer.parseInt(cursor.getString(0);
   if(rowScore < currentScore){
       //you have a new high score
    }
}

通过这种方式,您可以利用SQLite附带的预定义功能,这些功能更快,并为您节省一些工作。