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

I'm using JDBC directly, no Hibernate or ORM layer, and I want to search a table for multiple product names at the same time via "SELECT ... FROM xxx WHERE product_name IN (?)". I don't know what datatype to use when binding the ? value. I've tried a few things such as a comma-separated string, a Collection, etc, none seem to work.

share|improve this question

1 Answer

up vote 6 down vote accepted

The SQL IN clause list does not support/expect a single data type -- it's a comma separated list of values that are the same data type. By extension, JDBC and Java PreparedStatements will not support a single variable to represent a comma separated list. A [Java PreparedStatement] variable in an IN clause only represents one value of a comma separated list -- if you need two values, your query would look like:

WHERE product_name IN (?, ?)

Now that you see how limiting the syntax is, your options are to:

  • construct the query as a Java String object, and use string concatenation to convert the list/array of values into a comma separated list
  • use MySQL's string concatenation and MySQL's native dynamic SQL syntax to construct the query (also as a string/varchar)
share|improve this answer
Thanks for the detailed answer. – EJP Dec 14 '10 at 9:09

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.