Re: Strange issue with JDBC add Postgres

2016-05-23 Thread patelp7
.nabble.com/Strange-issue-with-JDBC-add-Postgres-tp5758548p5782983.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Strange issue with JDBC add Postgres

2014-11-12 Thread Claus Ibsen
There is a resetAutoCommit option, you can try set that to false On Mon, Nov 10, 2014 at 1:54 PM, Tim Dudgeon tdudgeon...@gmail.com wrote: I dug a bit deeper here and I think that Camel is doing something with the connection, possibly related to autoCommit. I worked around the problem by

Re: Strange issue with JDBC add Postgres

2014-11-12 Thread Tim Dudgeon
I already did. Described here: http://camel.465427.n5.nabble.com/Strange-issue-with-JDBC-add-Postgres-tp5758548p5758657.html Tim On 12/11/2014 19:26, Claus Ibsen wrote: There is a resetAutoCommit option, you can try set that to false On Mon, Nov 10, 2014 at 1:54 PM, Tim Dudgeon tdudgeon

Re: Strange issue with JDBC add Postgres

2014-11-10 Thread Tim Dudgeon
I dug a bit deeper here and I think that Camel is doing something with the connection, possibly related to autoCommit. I worked around the problem by writing my own Processor that sets autoCommit to false, sets maxRows on the statement and then iterates through the ResultSet and a cursor does

Re: Strange issue with JDBC add Postgres

2014-11-07 Thread Tim Dudgeon
I tracked it down a bit. Its something to do with auto commit. There's something about it here: http://www.postgresql.org/message-id/083dbfcc-8eac-4a5f-bd61-3a82dfc45...@visualdistortion.org In my case I tried using the resetAutoCommit=false property on the JDBC component, and thought it had

Re: Strange issue with JDBC add Postgres

2014-11-06 Thread Claus Ibsen
So maybe its your maxRows=1000 that is the problem, so when you are trying to get rows 1000 then it throws that exception. What is your use case? You want to select * from a table, but only the first 1000 rows? On Wed, Nov 5, 2014 at 10:05 PM, Tim Dudgeon tdudgeon...@gmail.com wrote: On

Re: Strange issue with JDBC add Postgres

2014-11-06 Thread Tim Dudgeon
On 06/11/2014 18:57, Claus Ibsen wrote: So maybe its your maxRows=1000 that is the problem, so when you are trying to get rows 1000 then it throws that exception. What is your use case? You want to select * from a table, but only the first 1000 rows? No, it happens without maxRows. I was just

Re: Strange issue with JDBC add Postgres

2014-11-05 Thread Tim Dudgeon
On 05/11/2014 19:07, Claus Ibsen wrote: maxRowSize ??? do you mean fetchSize? Sorry, I mean maxRows (as in the example here: http://camel.apache.org/jdbc.html). So something like: .to('jdbc:myDataSoruce?outputType=StreamListstatement.fetchSize=100statement.maxRows=1000') Also which