hello,
loads of questions, but I am very new to this
I have created a class that stores my establishment details like :
while(rs.next()) {
RS_Name = rs.getString("Establishmentname"
RS_Postcode = rs.getString("Postcode"
RS_County = rs.getString("County"
RS_Telephone = rs.getString("Telephone"
EstablishmentResultBean theBean = new EstablishmentResultBean(RS_Name, RS_Postcode, RS_County, RS_Telephone);
but I'm now trying to pass that result into an Array called establishmentlist, then loop through and add all values. any ideas ?
or is that just silly ?
loads of questions, but I am very new to this
I have created a class that stores my establishment details like :
while(rs.next()) {
RS_Name = rs.getString("Establishmentname"
RS_Postcode = rs.getString("Postcode"
RS_County = rs.getString("County"
RS_Telephone = rs.getString("Telephone"
EstablishmentResultBean theBean = new EstablishmentResultBean(RS_Name, RS_Postcode, RS_County, RS_Telephone);
but I'm now trying to pass that result into an Array called establishmentlist, then loop through and add all values. any ideas ?
or is that just silly ?