while(rs.next()) {
String s = rs.getString("first_name");
String ss = rs.getString("last_name")
}
how do I get all columns along with records without having to create multiple strings? lets say I have 10 columns in that table and I dont't need to store it to an object
thanks.