Re: Fwd: jdbc: with non-named parameter?

2018-04-02 Thread Ricardo Zanini
eader or key of body).The placeholder camel-sql is :# >> If you really want to support plain old ? JDBC placeholders, you will >> need to write a custom Processor. My advice is to change your SQL query to >> use the camel mechanism (:#) >> >> >> Miguel Ru

Re: Fwd: jdbc: with non-named parameter?

2018-03-31 Thread Tom Oehser
QL query to use the camel mechanism (:#) Miguel Ruiz Velasco SobrinoFCM Computación Mexicana Mensaje original De: Tom Oehser Fecha: 30/3/18 13:58 (GMT-06:00) A: users@camel.apache.org Asunto: Fwd: jdbc: with non-named parameter? Hey - trying to share some SQL between a Ca

Re: Fwd: jdbc: with non-named parameter?

2018-03-31 Thread Miguel Ruiz Velasco Sobrino
need to write a custom Processor. My advice is to change your SQL query to use the camel mechanism (:#) Miguel Ruiz Velasco SobrinoFCM Computación Mexicana Mensaje original De: Tom Oehser Fecha: 30/3/18 13:58 (GMT-06:00) A: users@camel.apache.org Asunto: Fwd: jdbc: with non

Fwd: jdbc: with non-named parameter?

2018-03-30 Thread Tom Oehser
Hey - trying to share some SQL between a Camel jdbc: app and a Spring jdbc-template app... the SQL is like     "blah blah ? blah blah" - can't figure out how to get camel jdbc: to support the ? (regular non-named) parameter. I see the named parameter support - I could change the SQL - but -