//update column with updateAsciiStream methods
if (indexOrName == 1) //test by passing column position
rs.updateAsciiStream(sqlType,
rs1.getAsciiStream(updateXXXName), 4);
else //test by passing column name
rs.updateAsciiStream(ColumnNames[sqlType-1],
rs1.getAsciiStream(updateXXXName), 4);
} else if (updateXXXName == 9) {
//update column with updateCharacterStream methods
if (indexOrName == 1) //test by passing column position
rs.updateCharacterStream(sqlType,