Lines Matching refs:col
145 int col = findColumnOfType(String.class) ; in _getString() local
146 if (col < 0) log.println("Type not found in relation: not tested"); in _getString()
149 String getStr = oObj.getString(col) ; in _getString()
167 int col = findColumnOfType(Boolean.class) ; in _getBoolean() local
168 if (col < 0) log.println("Type not found in relation: not tested"); in _getBoolean()
171 boolean getVal = oObj.getBoolean(col) ; in _getBoolean()
189 int col = findColumnOfType(Byte.class) ; in _getByte() local
190 if (col < 0) log.println("Type not found in relation: not tested"); in _getByte()
193 byte getVal = oObj.getByte(col) ; in _getByte()
211 int col = findColumnOfType(Short.class) ; in _getShort() local
212 if (col < 0) log.println("Type not found in relation: not tested"); in _getShort()
215 short getVal = oObj.getShort(col) ; in _getShort()
233 int col = findColumnOfType(Integer.class) ; in _getInt() local
234 if (col < 0) log.println("Type not found in relation: not tested"); in _getInt()
237 int getVal = oObj.getInt(col) ; in _getInt()
253 int col = findColumnOfType(Long.class) ; in _getLong() local
254 if (col < 0) log.println("Type not found in relation: not tested"); in _getLong()
257 long getVal = oObj.getLong(col) ; in _getLong()
273 int col = findColumnOfType(Float.class) ; in _getFloat() local
274 if (col < 0) log.println("Type not found in relation: not tested"); in _getFloat()
277 float getVal = oObj.getFloat(col) ; in _getFloat()
293 int col = findColumnOfType(Double.class) ; in _getDouble() local
294 if (col < 0) log.println("Type not found in relation: not tested"); in _getDouble()
297 double getVal = oObj.getDouble(col) ; in _getDouble()
313 int col = findColumnOfType(byte[].class) ; in _getBytes() local
314 if (col < 0) log.println("Type not found in relation: not tested"); in _getBytes()
317 byte[] getVal = oObj.getBytes(col) ; in _getBytes()
333 int col = findColumnOfType(Date.class) ; in _getDate() local
334 if (col < 0) log.println("Type not found in relation: not tested"); in _getDate()
337 Date getVal = oObj.getDate(col) ; in _getDate()
353 int col = findColumnOfType(Time.class) ; in _getTime() local
354 if (col < 0) log.println("Type not found in relation: not tested"); in _getTime()
357 Time getVal = oObj.getTime(col) ; in _getTime()
373 int col = findColumnOfType(DateTime.class) ; in _getTimestamp() local
374 if (col < 0) log.println("Type not found in relation: not tested"); in _getTimestamp()
377 DateTime getVal = oObj.getTimestamp(col) ; in _getTimestamp()
393 int col = findColumnOfType(XDataInputStream.class) ; in _getBinaryStream() local
394 if (col < 0) log.println("Type not found in relation: not tested"); in _getBinaryStream()
397 XInputStream getVal = oObj.getBinaryStream(col) ; in _getBinaryStream()
413 int col = findColumnOfType(XTextInputStream.class) ; in _getCharacterStream() local
414 if (col < 0) log.println("Type not found in relation: not tested"); in _getCharacterStream()
417 XInputStream getVal = oObj.getCharacterStream(col) ; in _getCharacterStream()
433 int col = findColumnOfType(Object[].class) ; in _getObject() local
434 if (col < 0) log.println("Type not found in relation: not tested"); in _getObject()
437 Object getVal = oObj.getObject(col, null) ; in _getObject()
453 int col = findColumnOfType(XRef.class) ; in _getRef() local
454 if (col < 0) log.println("Type not found in relation: not tested"); in _getRef()
457 XRef getVal = oObj.getRef(col) ; in _getRef()
473 int col = findColumnOfType(XBlob.class) ; in _getBlob() local
474 if (col < 0) log.println("Type not found in relation: not tested"); in _getBlob()
477 XBlob getVal = oObj.getBlob(col) ; in _getBlob()
493 int col = findColumnOfType(XClob.class) ; in _getClob() local
494 if (col < 0) log.println("Type not found in relation: not tested"); in _getClob()
497 XClob getVal = oObj.getClob(col) ; in _getClob()
513 int col = findColumnOfType(XArray.class) ; in _getArray() local
514 if (col < 0) log.println("Type not found in relation: not tested"); in _getArray()
517 XArray getVal = oObj.getArray(col) ; in _getArray()