Hello, I am not sure what should I use to store a one whole column from the SQL database in? I have seen many examples using either ArrayList or Lists or Array but the column data is usually Text. My column data is Number. After I have stored the column
data in either ArrayLists, Lists or Array,
I will have to loop throught the array using a for loop. Hence, is there any examples on storing column data wih int type in either ArrayLists, Lists or Array? And which is the most suitable type of array should I use to store the integer column in?
Go to the complete details ...