Caused by: java.lang.IllegalArgumentException: the bind value at index 1 is null

 正好刚插入一个数据,查询就错了, 我还以为是 数据库没有 _id 为1的数据....

 debug才发现原来是传值的时候,是null,

String where = KEY__ID + "=?";
		Cursor cursor = sqliteDatabase.query(DATABASE_TABLE, null, where,
				new String[] { _id }, null, null, null);

我传的 _id  为null,


 小记

你可能感兴趣的:(Caused by: java.lang.IllegalArgumentException: the bind value at index 1 is null)