问题:java.lang.IllegalArgumentException:the bind value at index is null


今天遇到一个这样的问题,解决了 知道是怎么回事

java.lang 
类 IllegalArgumentException
java.lang.Object
  java.lang.Throwable
      java.lang.Exception
          java.lang.RuntimeException
              java.lang.IllegalArgumentException

这个java.lang.IIIegalArgumentException 的解释如下:


public class IllegalArgumentExceptionextends RuntimeException抛出的异 常表明向方法传递了一个不合法或不正确的参数


找到这个问题对应的出现错的行:
Cursor c = db.rawQuery("select * from tablename where cntrct_no=? AND product_code=?",
				new String[]{cntrct_no, product_code});
			while (c.moveToNext()) { }

这里我是想调用数据库 ,取得查询结果,问题追踪了一下,我传值的cntrct_no是null,他提示的 the bind value at index is null 我一直认为下面while里面获取数据的时候的index 的第二列数据有误,后来才明白是这里绑定的第一个数据有问题。


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