Bosun Bello wrote:If you do not want to use an ORM such as Hibernate, then just create and object that maps to the data retrieved, populate each atribute with the columns of your resultset, and add them to a list. Again, as Paul mentioned, this is exactly what an ORM is for. Not sure why you do not want to use one.
is means that i have to create a hash map ,and take each data of column and populate to the map as follow
map <
String,String> a =new HashMap();
a,put(row column Name or number ,coulmn data);
once map is populated ,convert it into arraylist
for example if the result set contains 5 rows and 6 columns ,then 30 string object exist in the MAp in the value parameter?