Re: CSV marshaller problem - accumulating columns

2015-12-02 Thread ftoresan
Thanks for your reply. I'm using version 2.16, and I've created a pull request with a possible solution. It includes a test scenario that will fail without the change. If this test is not enough I can create another example to illustrate the problem.

CSV marshaller problem - accumulating columns

2015-11-30 Thread ftoresan
Hi, I have a route that exports data from a database to a csv file, and is reused across several tables. The problem is that the CsvMarshaller always adds up to its column list all the columns of the record being marshalled. It's probably the same issue being reported here

Re: Columns order in ResultSetIterator

2015-11-20 Thread ftoresan
Sure, I'll do it! Best regards, Fabricio Toresan -- View this message in context: http://camel.465427.n5.nabble.com/Columns-order-in-ResultSetIterator-tp5774150p5774153.html Sent from the Camel - Users mailing list archive at Nabble.com.

Columns order in ResultSetIterator

2015-11-20 Thread ftoresan
I'm using the JDBC component, and when I retrieve the columns from a ResultSetIterator using the method getColumns they are returned randomly. I expected to receive them in the same order they appear in the query projection. The problem is the use of a HashSet instead of a LinkedHashSet to return