What i am trying to do is i want to be able to pull fields from multiple JDBC Objects so i can use it to name a folder specifically for a client, I have added instances of each required object to retrieve the data to name the client folder and the file to go in that folder as well as the data that needs to go in that file
Here is the code that i am having issues with
java.util.List<TransactionItemBean> transactionItems = transactionItemDAO.findAllForTransaction(transactionNo);
java.util.List<TransactionBean> transactions = transactionDAO.findAll();
java.util.List<BuyerBean> buyers = buyerDAO.findAll();
java.util.List<VehicleBean> vehicles = vehicleDAO.findAll();
for (int i = 0; i <transactionItems.size(); i++) {
String client = buyers.get(transactions.get(transactionNo-1).getBuyerId()).getSurname_organization();
String vehiclePlate = vehicles.get(transactionItems.get(i).getVehicleId()).getPlate_no();
String vehicleMake = vehicles.get(transactionItems.get(i).getVehicleId()).getMake();
String vehicleModel = vehicles.get(transactionItems.get(i).getVehicleId()).getModel();
From what i can see is it seems as though the issue is being caused by the nested JDBC Objects but i am not sure about how to resolve this issue
transactionNo? Why do you usetransactionNo-1instead ofi? Can you show the exception stacktrace? – dotvav Dec 18 '12 at 16:57