Possible Duplicate:
java PreparedStatement
Can I make the prepared statement
SELECT * FROM STUDENTS WHERE STUDENT_ID IN ?
into
SELECT * FROM STUDENTS WHERE STUDENT_ID IN (1,2,3)
Given that the collection of student ids is a string array.
Can I make the prepared statement
into
Given that the collection of student ids is a string array. |
||||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
I think your best solution is going to be generate the in clause dynamically: See duplicate question: http://stackoverflow.com/questions/178479/alternatives-for-java-sql-preparedstatement-in-clause-issue |
|||
|
|