//update column with updateBinaryStream methods
if (indexOrName == 1) //test by passing column position
rs.updateBinaryStream(sqlType,
rs1.getBinaryStream(updateXXXName), 2);
else //test by passing column name
rs.updateBinaryStream(ColumnNames[sqlType-1],
rs1.getBinaryStream(updateXXXName), 2);
} else if (updateXXXName == 13) {
//update column with updateClob methods
//Don't test this method because running JDK1.3 and this jvm
//does not support the method