I have this fragment of code
final List<Account> result = this.jdbcTemplate.query(LIST_OF_ACCOUNT_SQL, new String[]{ids},
When I pass only one argument like
final String ids= "3213";
Code is working fine.
But I have problem passing multiple arguments to my wildcard
final String ids= "3213, 2313";
This is my SQL
"SELECT ID, NAME FROM ACCOUNT WHERE STATUS = 'OK' AND ID IN (?) ";
I am using Oracle Database.