Hi,
I use AsposeWords to perform a MailMerge with DataSet and ResultSet which contain a CLOB COLUMN as shown here:
DataSet dataSet = new DataSet();
DataTable dtData = new DataTable(rs, "Broschuere");
dataSet.getTables().add(dtData);
InputStream inputStream = getClass().getResourceAsStream(template);
doc = new Document(inputStream);
doc.getMailMerge().executeWithRegions(dataSet);
doc.updateFields();
After doing this with no errors, opening my DOC on the position where the CLOB should be I see the following “oracle.sql.CLOB@5c7088b1”, so the MailMerge past the Pointer and not the value of the CLOB.
can you help me?
thx
Michael