我正在尝试实现一个让所有if-elseif-else和while循环旋转的方法。我有一个包含3列的SQLite数据库 - 自动增量,得分(长)和百分比(int)。百分比来自10个问题的正确性,分数将是0到1000之间的一些数字。因此,分数中会有很多关联,并且(可能)没有分数。
高分按百分比排名第一,然后以相同的百分比值“打破”所有记录的平局,然后按分数排名。这一切都有意义吗?如果没有,请告诉我,我会编辑并尝试更好地解释它。
我的问题是,如果有人有任何建议或其他示例我可以遵循以完成此方法。另外,我可以这样做吗?我使用rawQuery()
而不是使用insert()
方法插入表中,因为我需要在大多数时间将特定索引插入到我的数据库中。我也包括了我的插入方法。
//Check if new record makes the top 10.
public int check(long score, int percentage) {
Cursor c1 = db.rawQuery("SELECT " + PERCENTAGE + " FROM " + TABLE, null);
Cursor c2 = db.rawQuery("SELECT " + SCORE + " FROM " + TABLE, null);
if(c1 != null && c2 != null) {
int i = 0;
while(c1.moveToNext() == true) {
int ii = 0;
c1.moveToPosition(i);
do {
int x = c1.getInt(c1.getColumnIndex("PERCENTAGE"));
if(x > percentage) {
db.rawQuery("INSERT INTO " + TABLE + "VALUES (" + i + ", " + score + ", " + percentage + ");", null);
} else if (x < percentage ) {
i++;
} else {
int y = c2.getInt(c2.getColumnIndex("SCORE"));
while(x == percentage) {
//ahhhh!
}
if(y > score) {
db.rawQuery("INSERT INTO " + TABLE + "VALUES (" + i + ", " + score + ", " + percentage + ");", null);
} else
if(c2.getCount() == 10) {
//Delete last record in high score and insert at index.
delete(10);
//db.rawQuery("DELETE FROM " + TABLE + " WHERE " + RANK + " = 10;", null);
db.rawQuery("INSERT INTO " + TABLE + "VALUES (" + i + ", " + score + ", " + percentage + ");", null);
return true;
} else {
//No deletion - just insert.
db.rawQuery("INSERT INTO " + TABLE + "VALUES (" + i + ", " + score + ", " + percentage + ");", null);
return true;
}
} else {
return false;
}
} while (c2.moveToNext());
} else {
return false;
}
} else {
return false;
}
}
刀片()
//Insert new record.
public long insert(long score, int percentage) {
ContentValues values = new ContentValues();
values.put(SCORE, score);
values.put(PERCENTAGE, percentage);
return db.insert(TABLE, null, values);
}