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