Re: Camel + Ibatis

2013-09-30 Thread Ankur
please help me in writing ibatis insert query Thanks -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Ibatis-tp5740547p5740562.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel + Ibatis

2013-09-30 Thread Larry Meadors
Mybatis won't insert a list - you need to make that work yourself. It might be possible to do a for-each in your mapped statement to create multiple inserts there, or if you're using mysql, use the "insert ... values () () ... ()" syntax. Larry

Camel + Ibatis

2013-09-30 Thread Ankur
nsert statement for the same. As this source will return List to me but how to refer that list while inserting Thanks for your help -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Ibatis-tp5740547.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel-Ibatis consumer.onConsume with Oracle throws transaction isolation level error

2011-09-01 Thread Owen Toalson
Thanks! -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Ibatis-consumer-onConsume-with-Oracle-throws-transaction-isolation-level-error-tp4731035p4758966.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel-Ibatis consumer.onConsume with Oracle throws transaction isolation level error

2011-08-27 Thread Claus Ibsen
Hi On Wed, Aug 24, 2011 at 6:31 PM, Owen Toalson wrote: > I have a camel-ibatis app that polls an oracle database table for inserted > rows and uses the onConsume option to update the table with a "row consumed" > column to avoid duplicate polling.  Everything works except the

Camel-Ibatis consumer.onConsume with Oracle throws transaction isolation level error

2011-08-24 Thread Owen Toalson
I have a camel-ibatis app that polls an oracle database table for inserted rows and uses the onConsume option to update the table with a "row consumed" column to avoid duplicate polling. Everything works except the update statement for the onConsume throws "READ_COMMITTED and S

Re: Camel IBatis or MyBatis Page query support

2011-05-06 Thread davsclaus
Camel in Action: http://www.manning.com/ibsen/ -- View this message in context: http://camel.465427.n5.nabble.com/Camel-IBatis-or-MyBatis-Page-query-support-tp4375418p4375579.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: camel-ibatis and NoClassDefFound

2010-09-19 Thread Willem Jiang
ates to your route config. Can I have a look at your route configure ? Maybe I can write a simple OSGi test for it. Willem On 9/17/10 12:19 AM, Darren Davison wrote: hi, we are trying to deploy a bundle in smx 4.2 that uses the camel-ibatis feature and are runing into a runtime excepti

Re: camel-ibatis and NoClassDefFound

2010-09-17 Thread Mark
fig. >> >> Can I have a look at your route configure ? >> Maybe I can write a simple OSGi test for it. >> >> Willem >> >> On 9/17/10 12:19 AM, Darren Davison wrote: >> >hi, >> > >> >we are trying to deploy a bundle in smx 4.2 that uses t

Re: camel-ibatis and NoClassDefFound

2010-09-17 Thread Darren Davison
, everything looks good. > Not sure if the it relates to your route config. > > Can I have a look at your route configure ? > Maybe I can write a simple OSGi test for it. > > Willem > > On 9/17/10 12:19 AM, Darren Davison wrote: > >hi, > > > >we are trying to

Re: camel-ibatis and NoClassDefFound

2010-09-17 Thread Willem Jiang
uses the camel-ibatis feature and are runing into a runtime exception as follows: Caused by: java.lang.NoClassDefFoundError: com/ibatis/common/xml/NodeletException at java.lang.Class.getDeclaredConstructors0(Native Method) at java.lang.Class.privateGetDeclaredConstructors(Class.java

camel-ibatis and NoClassDefFound

2010-09-16 Thread Darren Davison
hi, we are trying to deploy a bundle in smx 4.2 that uses the camel-ibatis feature and are runing into a runtime exception as follows: Caused by: java.lang.NoClassDefFoundError: com/ibatis/common/xml/NodeletException at java.lang.Class.getDeclaredConstructors0(Native Method) at

Re: camel-ibatis,jdbc,sql how to LOCK TABLE MYTABLE IN EXCLUSIVE MODE NOWAIT

2010-09-13 Thread icey
Hi, The solution for me was to use a spring JdbcTemplate to execute the sql "LOCK TABLE MYTABLE IN EXCLUSIVE MODE NOWAIT" and @transactional annotation on my process bean. Cheers -- View this message in context: http://camel.465427.n5.nabble.com/camel-ibatis-tp471459p2837391.html Sen

camel-ibatis

2010-06-09 Thread Arvydas
Hi all. As a newcomer to camel I would be very grateful if you helped me. The problem is with camel IBATIS component. I am making the simple camel ibatis component which selects information from database table, deletes it from same database table and sends the information to http provider

Re: OSGI + camel-ibatis: java.sql.SQLException: No suitable driver

2010-02-04 Thread Charles Moulliard
;gid=2447439&trk=anet_ug_hm On Thu, Feb 4, 2010 at 3:48 PM, Aleksey Masny wrote: > > When i deploy my camel-project as bundle on Apache Felix Karaf and start > it, > in log i see exception java.sql.SQLException: No suitable driver. And my > bundle not work properly . > >

OSGI + camel-ibatis: java.sql.SQLException: No suitable driver

2010-02-04 Thread Aleksey Masny
When i deploy my camel-project as bundle on Apache Felix Karaf and start it, in log i see exception java.sql.SQLException: No suitable driver. And my bundle not work properly . My bundle uses camel-ibatis component. camel-ibatis through SqlMapConfog.xml uses MSSQL jdbc driver for connect to db

Re: Camel iBatis : management of real-time recording of a database?

2009-10-26 Thread Dmitry Ulanov
gt;> > > > > People can solve this in the DB itself by using triggers to copy data > > from one table to another. > > Then its "real time" > > > > > >> Best regards, > >> > >> titexe > >> > >> PS : I bought

Re: Camel iBatis : management of real-time recording of a database?

2009-10-26 Thread Claus Ibsen
anage this mode(real >>> time)? >>> >> >> People can solve this in the DB itself by using triggers to copy data >> from one table to another. >> Then its "real time" >> >> >>> Best regards, >>> >&

Re: Camel iBatis : management of real-time recording of a database?

2009-10-26 Thread titexe
uot; > > >> Best regards, >> >> titexe >> >> PS : I bought your book camel in action, it has served me well, I wish >> you >> good continuation >> -- >> View this message in context: >> http://www.nabble.com/Camel-iBatis-%3A-managem

Re: Camel iBatis : management of real-time recording of a database?

2009-10-24 Thread Claus Ibsen
chapters and TOC anything is open for changes. In fact we are aware that chapter 1 need an overhaul for the next time. Manning Author Online forum http://www.manning-sandbox.com/forum.jspa?forumID=601 > View this message in context: > http://www.nabble.com/Camel-iBatis-

Re: Camel iBatis : management of real-time recording of a database?

2009-10-24 Thread Claus Ibsen
y using triggers to copy data from one table to another. Then its "real time" > Best regards, > > titexe > > PS : I bought your book camel in action, it has served me well, I wish you > good continuation > -- > View this message in context: > http://www.nabbl

Re: Camel iBatis : management of real-time recording of a database?

2009-10-23 Thread Dmitry Ulanov
Camel iBatis componet is just very simple wrapper around Apache iBatis library which very close to JDBC by performance and time assumption. Is JDBC can manage your real time? I don't know exactly. On Fri, Oct 23, 2009 at 9:41 PM, titexe wrote: > > Hello, > > We would like to

Camel iBatis : management of real-time recording of a database?

2009-10-23 Thread titexe
message in context: http://www.nabble.com/Camel-iBatis-%3A-management-of-real-time-recording-of-a-database--tp26030539p26030539.html Sent from the Camel - Users mailing list archive at Nabble.com.