You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to implement SELECT * FROM TEST WHERE FIELD IN (?) , use the ... WHERE name IN (#{names})
but no data was obtained
class Person {
private List names;
}
var person = new Person();
person.setNames = new ArrayList(){.....}
SqlTemplate.forQuery(client, 'select * from test where name in (#names)')
.mapFrom(Person.class)
.execute(person);
Questions
I want to implement
SELECT * FROM TEST WHERE FIELD IN (?)
, use the... WHERE name IN (#{names})
but no data was obtained
Version
SQL Client Templates 4.3.0
Context
I'm not sure if I'm using it the wrong way, but I didn't find the corresponding documentation either
The text was updated successfully, but these errors were encountered: