}
public char[] getClob(String columnName) {
try {
Clob clob = this.resultSet.getClob(columnName);
return new ReaderChain(clob.getCharacterStream()).read();
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException("Exception while reading Clob from database.", e);
}
}