Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my Spring Hibernate application i have all the sql queries in one common_queries.xml file,where some queries require 2 to 3 parameters shown as below

   <query id="mining.fuel" no-of-params="2">
select ms.id id,ms.name value,concat(ms.name,' ','  (',ms.code,')') label,ms.rate rate     from mining_fuel ms where ms.name like '?' and ms.fuel_type_id=?  LIMIT 10
 </query>   

In my daoImpl i get this query

lookupList = jdbcTemplate.queryForList(q1.getQuery());

I will get the query here,but how to pass the value of '?'s here, i have those 2 values with me in daoImpl.. pl send the code of how to achieve this.I dont want to use prepared statement.

share|improve this question

1 Answer

up vote 0 down vote accepted

Use this overload which takes an Object vararg for passing the query parameters:

lookupList = jdbcTemplate.queryForList(q1.getQuery(), value1, value2, value3);
share|improve this answer
well, i tried that i have 2 values like (q1.getQuery(),lookupValue,filterType);but when i hardcode lookupValue and pass only one parameter filterType its working fine, but when i do it reverse its throwing java.sql.SQLException: No parameters defined during prepareCall() and when i pass both values its throwing java.sql.SQLException: Parameter index out of bounds. 2 is not between valid values of 1 and 1 .Is there any problem with the select query near 'like' i have mentioned above? – Anupama Aug 10 '11 at 12:18
Try to remove the quotes around the first ?: like ?. – Costi Ciudatu Aug 10 '11 at 13:39
actually i want to use ( like ' ?% ' ) but if i remove single quotes ( like ?% ) its showing sql grammer exception..If i use with quotes its showin parameter out of bounds exception. – Anupama Aug 11 '11 at 6:06
I guess you need to use it without quotes and have the '%' appended to the value: ... like ? ..., and then your value should be someString + '%' – Costi Ciudatu Aug 11 '11 at 8:32
Thank u so much .It worked. – Anupama Aug 12 '11 at 7:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.