Hi all, Apologies for the beginner question but I'm trying to get a new project going from the examples I have seen and read (Spring DSL).
I'm trying to use the camel jdbc component to do a select from database 1 and insert into db2. I've got my select working as per below.... <route id="trigger-database"> <from uri="timer://webinar?{{timerParams}}"/> <setBody> <simple>${properties:sql.selectProduct}</simple> </setBody> <to uri="jdbc:sourceDataSource"/> <split> <simple>${body}</simple> <log message=">>> Select all but using properties to define query : ${body}"/> </split> <to uri="controlbus:route?routeId=trigger-database&action=stop&async=true"/> </route> I'm not sure how to change this route to now insert into database 2. Can someone please help me with the syntax. thanks -- View this message in context: http://camel.465427.n5.nabble.com/Cam-JDBC-component-help-tp5739528.html Sent from the Camel - Users mailing list archive at Nabble.com.