Lines Matching refs:idx
121 int idx = findParamOfType(String.class) ; in _setNull() local
122 if (idx < 0) log.println("Type not found in relation: not tested"); in _setNull()
125 oObj.setNull(idx, DataType.VARCHAR) ; in _setNull()
149 int idx = findParamOfType(String.class) ; in _setString() local
150 if (idx < 0) log.println("Type not found in relation: not tested"); in _setString()
153 oObj.setString(idx, "XParameters") ; in _setString()
170 int idx = findParamOfType(Boolean.class) ; in _setBoolean() local
171 if (idx < 0) log.println("Type not found in relation: not tested"); in _setBoolean()
174 oObj.setBoolean(idx, true) ; in _setBoolean()
191 int idx = findParamOfType(Byte.class) ; in _setByte() local
192 if (idx < 0) log.println("Type not found in relation: not tested"); in _setByte()
195 oObj.setByte(idx, (byte)122) ; in _setByte()
212 int idx = findParamOfType(Short.class) ; in _setShort() local
213 if (idx < 0) log.println("Type not found in relation: not tested"); in _setShort()
216 oObj.setShort(idx, (short)133) ; in _setShort()
233 int idx = findParamOfType(Integer.class) ; in _setInt() local
234 if (idx < 0) log.println("Type not found in relation: not tested"); in _setInt()
237 oObj.setInt(idx, 13300) ; in _setInt()
254 int idx = findParamOfType(Long.class) ; in _setLong() local
255 if (idx < 0) log.println("Type not found in relation: not tested"); in _setLong()
258 oObj.setLong(idx, 13362453) ; in _setLong()
275 int idx = findParamOfType(Float.class) ; in _setFloat() local
276 if (idx < 0) log.println("Type not found in relation: not tested"); in _setFloat()
279 oObj.setFloat(idx, (float)133.55) ; in _setFloat()
296 int idx = findParamOfType(Double.class) ; in _setDouble() local
297 if (idx < 0) log.println("Type not found in relation: not tested"); in _setDouble()
300 oObj.setDouble(idx, 133) ; in _setDouble()
317 int idx = findParamOfType(byte[].class) ; in _setBytes() local
318 if (idx < 0) log.println("Type not found in relation: not tested"); in _setBytes()
321 oObj.setBytes(idx, new byte[] {5}) ; in _setBytes()
338 int idx = findParamOfType(Date.class) ; in _setDate() local
339 if (idx < 0) log.println("Type not found in relation: not tested"); in _setDate()
343 idx, new Date ((short)19, (short)01, (short)1979)) ; in _setDate()
360 int idx = findParamOfType(Time.class) ; in _setTime() local
361 if (idx < 0) log.println("Type not found in relation: not tested"); in _setTime()
365 idx, new Time((short)1,(short)2,(short)3,(short)44)) ; in _setTime()
382 int idx = findParamOfType(DateTime.class) ; in _setTimestamp() local
383 if (idx < 0) log.println("Type not found in relation: not tested"); in _setTimestamp()
386 oObj.setTimestamp(idx, new DateTime((short)1,(short)2,(short)3, in _setTimestamp()
404 int idx = findParamOfType(XDataInputStream.class) ; in _setBinaryStream() local
405 if (idx < 0) log.println("Type not found in relation: not tested"); in _setBinaryStream()
413 oObj.setBinaryStream(idx, xStream, 2) ; in _setBinaryStream()
434 int idx = findParamOfType(XTextInputStream.class) ; in _setCharacterStream() local
435 if (idx < 0) log.println("Type not found in relation: not tested"); in _setCharacterStream()
443 oObj.setCharacterStream(idx, xStream, 2) ; in _setCharacterStream()
464 int idx = findParamOfType(Object[].class) ; in _setObject() local
465 if (idx < 0) log.println("Type not found in relation: not tested"); in _setObject()
471 oObj.setObject(idx, obj) ; in _setObject()
492 int idx = findParamOfType(Object[].class) ; in _setObjectWithInfo() local
493 if (idx < 0) log.println("Type not found in relation: not tested"); in _setObjectWithInfo()
499 oObj.setObjectWithInfo(idx, obj, DataType.OBJECT, 0) ; in _setObjectWithInfo()