Reverting back the other databases to use the arrays.

revert-70aa11f8
sinthuja 7 years ago
parent 4018d582ed
commit 5570349cd1

@ -376,9 +376,8 @@ public class ProcessorImpl implements Processor {
} else {
query += "?) ORDER BY DEVICE_ID";
stmt = conn.prepareStatement(query);
for (int i = 0; i < devices.size(); i++) {
stmt.setInt(i, devices.get(i).getId());
}
Array array = conn.createArrayOf("INT", Utils.getArrayOfDeviceIds(devices));
stmt.setArray(1, array);
}
rs = stmt.executeQuery();

Loading…
Cancel
Save