for (int id_order = 1; id_order <= TpccTools.NB_MAX_ORDER; id_order++) {
current = new Order();
current.setO_id(id_order);
current.setO_w_id(w_id);
current.setO_d_id(d_id);
found = current.load(basicCache);
if (found && current.getO_c_id() == c_id) {
list.add(current);
}
}