throw new SQLException("RowSet does not contain any columns!");
}
if (columnIndex > row.length) {
throw new SQLException("Invalid columnIndex: " + columnIndex);
}
Type columnType = getSchema().getColumnDescriptorAt(columnIndex - 1).getType();
try {
Object evaluated = evaluate(columnType, row[columnIndex - 1]);
wasNull = evaluated == null;
return evaluated;