Does EspressReport truncate long text line?
Most often this occurs because the cell is not large enough to show the whole text. To remedy this, you may either create a template with the width and height set (assuming you know what the maximum size of the strings will be) and you can then apply the template onto the report object created. Or expand the cell height and width by the following API lines: report.getTable().getHeader().setHeight(1); // Set Height to one inch report.getTable().getHeader().setWidth(7); // Set Width to seven inch You can also enable the resize to fit content option using: setResizeToFitContent(boolean b) The only time when EspressReport will truncate the data is when the virtual memory/paging feature is on. If the virtual memory feature is enabled, use the following line to set the max number of characters per field. QbReport.setMaxCharForRecordFile(500); When we tried connecting EspressReport to our database, we received a ClassNotFound exception. / When we tried to connect to Oracle it gives java.sql.S