Is it possible to use jdbc's prepared statements with camel-jdbc?
It's more for a matter of preventing sql injection than performance. 


My route is using a bean to transform an xml data input into a insert statement 
like this:
from("direct:xmlInput").
bean(classOf[xmlTransformToSql]).
log("Received: ${body}").
to("jdbc:test_data")


I'm escaping the input in the bean but a prepared statement would be more 
secure.



-- 
@tommychheng
http://tommy.chheng.com


Reply via email to