
|
I use a JDBCReader to read info from an MySQL database and a ExcelWriter to write this data one-on-one to an excel sheet. At this moment I get a ‘Too many different cell formats’ error if I open the resulting excel sheet in MS Excel 2002. The query results in ~45000 records of 14 columns each.
Any ideas on where to look for a solution?
|

|
Issue seems to be solved by using the JXL library for excel creation:
- Code: Select all
ExcelDocument document = new ExcelDocument(ExcelDocument.ProviderType.JXL);
|
 Dele Taylor
|
Thanks for posting about this problem with the default (Apache POI) Excel provider along with your solution.
We’ve put in a fix that caches cell styles in the latest Development release (2.2.4). We tested it with 65,535 rows and 64 columns without any problems.
Please give it a try if you get time.
http://northconcepts.com/downloads/data-pipeline/NorthConcepts-DataPipeline-2.2.4.zip/
Thanks, Dele
|