I have for example the following code line
ResultSet rs = stmt.executeQuery("SELECT * FROM item WHERE itemID='"+ X +"'");
if item table scheme
is: ItemID,itemName,Count,location
how does the row from the table "sit" in the ResultSet? is there a way to take the entire row and push it to the first cell of ArrayList (that is the value i must return and i can not change it, for other queries with multiple line results each line will be in a different cell of the array)?