这是我的代码,我尝试对我的 Sqlit 数据库执行随机查询。
我最终总是得到相同的值!
请问有人可以告诉我方向吗?
谢谢!
int i2=gerRank(livello);
Random r = new Random();
int i1 = r.nextInt(i2);
Toast.makeText(this,Integer.toString(i1),Toast.LENGTH_SHORT).show();
Cursor parolaCursor = db.getReadableDatabase().rawQuery(
"SELECT _id, english, korean, difficulty FROM ordinato WHERE difficulty < "
+ Integer.toString(i1)+ " ORDER BY _id", null);
parolaCursor.moveToFirst();