rs.updateInt(ColumnNames[sqlType-1],
rs1.getInt(updateXXXName));
} else if (updateXXXName == 3) {
//update column with updateLong methods
if (indexOrName == 1) //test by passing column position
rs.updateLong(sqlType, rs1.getLong(updateXXXName));
else //test by passing column name
rs.updateLong(ColumnNames[sqlType-1],
rs1.getLong(updateXXXName));
} else if (updateXXXName == 4) {
if (!JDBC.vmSupportsJSR169())