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
Stringsql = "SELECT id, name FROM organization WHERE status='ok' AND id IN (?)"List<List<Integer>> list = newArrayList<>();
list.add(orgsId);
con.sendPreparedStatement(sql, list)
.get()
.getRows()
.forEach(row ->{
result.add(newOrg(row.getInt(0), row.getString(1)));
});
error: An operation is not implemented: couldn't find mapping for class java.util.ArrayList