Connection connection = null;
try {
connection = dataSource.getConnection();
return adapter.doGetIds(connection, fromIndex, toIndex);
} catch (Exception e) {
throw new AuditorException("Could not retrieve exchange ids", e);
} finally {
close(connection, false);
}
}