} else if (updateXXXName == 6) {
//update column with updateDouble methods
if (indexOrName == 1) //test by passing column position
rs.updateDouble(sqlType, rs1.getDouble(updateXXXName));
else //test by passing column name
rs.updateDouble(ColumnNames[sqlType-1],
rs1.getDouble(updateXXXName));
} else if (updateXXXName == 7) {
//update column with updateString methods
if (indexOrName == 1) //test by passing column position
rs.updateString(sqlType, rs1.getString(updateXXXName));