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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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:
Now that you see how limiting the syntax is, your options are to:
|
||||
|
|