I'm trying to do a query like this:
SELECT * from Employee where First_Name between 'AA' and 'AK'
I'm using the camel sql component and passing a parameter through the header like this:
Query: SELECT * from Employee where First_Name between :#headerParam
Param: AA' and 'AK
I know that Camel's SQL component adds single quotes to the beginning and end of the parameters, and I'm looping through the between params, is there any way it won't remove the single quotes from my parameter?