I have to find out if there are entries in a table that also exist in a list I have in Java. The logical solution would be "SELECT column FROM table WHERE column IN (?)" and then set ? to the array I have in Java, but setArray asks for a java.sql.Array and I'm not really sure how to obtain one and if it really is what I am looking for.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can't do this with JDBC but if are using spring or hibernate, both have support for rewriting a query to unroll a list of parameters into the right number of ?.
In spring you need to use the NamedParameterJdbcTemplate. |
|||||||||||
|
|
No, that's not possible. Unfortunately, IN requires two steps:
No easy way to do it. |
|||||||||
|
setArraymethod is? – Denis Kniazhev Aug 24 '10 at 9:54