我在此行中收到此异常“绑定或列索引超出范围”:
Cursor cursor = db.query(TABLE_NAME, null, ID, new String[] { id }, null, null, null);
我想检查数据库中是否存在给定的id,但是查询总是抛出此异常,我不知道出了什么问题。我试过这个,例外情况也一样:
Cursor cursor = db.query(TABLE_NAME, null, ID+" = ?", new String[] { id }, null, null, null);
这是我编程的方法。如果这里有问题,请告诉我:
public boolean existsAcc(String id)
{
//Check the parameters
if (id == null)
{
throw new IllegalArgumentException(
"The id parameter cannot be null");
}
SQLiteDatabase db = getReadableDatabase();
Cursor cursor = db.query(TABLE_NAME, null, ID, new String[] { id }, null, null, null);
if (!cursor.moveToFirst())
{
cursor.close();
return false;
}
cursor.close();
return true;
}
答案 0 :(得分:2)
我不知道为什么Chirag删除了他的答案,但他是对的。改变
Cursor cursor = db.query(TABLE_NAME, null, ID, new String[] { id }, null, null, null);
到
Cursor cursor = db.query(TABLE_NAME, null, ID + " = '" + id + "'", null, null, null, null);
诀窍。