if (pValue instanceof TextData) {
TextData textValue = (TextData) pValue;
cachedRowSet.updateString(pColOrdinal, textValue.toString());
} else if (pValue instanceof IntegerData) {
IntegerData integerValue = (IntegerData) pValue;
cachedRowSet.updateInt(pColOrdinal, integerValue.getIntegerValue());
} else if (pValue instanceof DoubleData) {
DoubleData doubleValue = (DoubleData) pValue;
cachedRowSet.updateDouble(pColOrdinal, doubleValue.getDoubleValue());
} else if (pValue instanceof DecimalData) {
DecimalData value = (DecimalData) pValue;