Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i was wondering if there is a more elegant way to do IN() queries with Spring's JDBCTemplate. Currently i do something like that:

StringBuilder jobTypeInClauseBuilder = new StringBuilder();
for(int i = 0; i < jobTypes.length; i++) {
	Type jobType = jobTypes[i];

	if(i != 0) {
		jobTypeInClauseBuilder.append(',');
	}

	jobTypeInClauseBuilder.append(jobType.convert());
}

Which is quite painful since if i have nine lines just for building the clause for the IN() query. I would like to have something like the parameter substution of prepared statements. I cannot imagine i am the only person who is annoyed by this fact im asking here to get a solution. Thanks a lot in advance!

share|improve this question
   
In Python these nine lines would be: ", ".join(jobTypes) Tough luck :) – lutz Aug 25 '09 at 9:31
3  
lutz: A bit redundant comment, are you sure you know the full context of this question? – Esko Aug 25 '09 at 9:56

5 Answers

up vote 42 down vote accepted

You want a parameter source:

Set<Integer> ids = ...;

MapSqlParameterSource parameters = new MapSqlParameterSource();
parameters.addValue("ids", ids);

List<Foo> foo = getJdbcTemplate().query("SELECT * FROM foo WHERE a IN (:ids)",
     getRowMapper(), parameters);
share|improve this answer
1  
Part of Spring since 2.0 btw – yawn Aug 25 '09 at 10:01
2  
Perfect, the NamedParameterJdbcTemplate was exactly what i was looking for. Additionally i like named parameters more than those question marks all over the place. Thanks a lot! – Malax Aug 25 '09 at 10:43
You're welcome! – yawn Aug 25 '09 at 11:20
1  
This works for small lists, but attempting to use it on a large list results in a query where :ids is replaced with "?,?,?,?,?......" and with enough list items it overflows. Is there a solution that works for large lists? – nsayer Apr 26 '10 at 17:45
2  
To comlete answer: Spring 3.1 Reference — Passing in lists of values for IN clause. But in Reference was nothing said about: it is possible to pass any Collection. – Errandir Jan 18 '12 at 20:36
show 2 more comments

I don't think there is, unfortunately.

To concatenate your fields into an IN() clause, you should look at Apache Commons and StringUtils.join().

I know that's not quite the answer you're looking for, but it does simply the the above.

EDIT: yawn (above) has identified the existing method.

share|improve this answer
Not quite what im looking for, but may help to ease the pain. Thanks! – Malax Aug 25 '09 at 9:21
Yes. Unfortunately I think that's your only option. I've been there before :-( – Brian Agnew Aug 25 '09 at 9:29

I do the "in clause" query with spring jdbc like this:

List l = Arrays.asList(new Integer[]{12496,12497,12498,12499});
Map<String, List> param = Collections.singletonMap("goodsid",l);        
NamedParameterJdbcTemplate  namedParameterJdbcTemplate = new  
NamedParameterJdbcTemplate(getJdbcTemplate().getDataSource());
String sql = "SELECT bg.goodsid FROM beiker_goods bg WHERE bg.goodsid in(:goodsid)";
List<Long> list = namedParameterJdbcTemplate.queryForList(sql, param2, Long.class);
share|improve this answer
You just posted an answer to a almost three year old question with the same solution as the accepted answer had. Is there any good reason behind this? :-) – Malax Feb 9 '12 at 9:20
Maybe i show more details for the question. – janwen Mar 2 '12 at 7:40

The answer above by yawn sounds perfect, but no such version of the query(...) method seems to exist in spring 2.5.6. Was it removed? Or is there some other silly reason I can't find it? Whats the exact signature of the method I should be looking for?

share|improve this answer
You want the ones with 'named parameter support' static.springsource.org/spring/docs/2.5.x/api/org/… – Patrick Mar 25 '11 at 22:17

There's no good way to do it in Spring because there's no good way to do it in JDBC.

share|improve this answer
Thats obvious, i was asking explicitly for JDBCTemplate since there might be some handy helper i am not aware of. :-) – Malax Aug 25 '09 at 9:51
Not that obvious, because you assumed that Rod Johnson was able to come up with something elegant that you or I would miss. Alas, even the Spring team can't get past this obstacle in JDBC. – duffymo Aug 25 '09 at 9:53

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.