//use SHORT sql type column's value for testing boolean
//since Derby don't support boolean datatype
//Since Derby does not support Boolean datatype, this method
//is going to fail with the syntax error
if (indexOrName == 1) //test by passing column position
rs.updateBoolean(sqlType, rs1.getBoolean(1));
else //test by passing column name
rs.updateBoolean(ColumnNames[sqlType-1],
rs1.getBoolean(1));
} else if (updateXXXName == 19) {
//update column with updateNull methods