Open
Description
- code
String sql = "SELECT id, name FROM organization WHERE status='ok' AND id IN (?)"
List<List<Integer>> list = new ArrayList<>();
list.add(orgsId);
con.sendPreparedStatement(sql, list)
.get()
.getRows()
.forEach(row ->{
result.add(new Org(row.getInt(0), row.getString(1)));
});
- error:
An operation is not implemented: couldn't find mapping for class java.util.ArrayList
Metadata
Metadata
Assignees
Labels
No labels