} else if (updateXXXName == 14) {
//update column with updateDate methods
if (indexOrName == 1) //test by passing column position
rs.updateDate(sqlType,rs1.getDate(updateXXXName));
else //test by passing column name
rs.updateDate(ColumnNames[sqlType-1],
rs1.getDate(updateXXXName));
} else if (updateXXXName == 15) {
//update column with updateTime methods
if (indexOrName == 1) //test by passing column position
rs.updateTime(sqlType, rs1.getTime(updateXXXName));