Hello. I have this doubt... When querying a DB through JDBC, should I take the data directly from the ResultSet and into the GUI or should I create an object, fill that object with the data from the ResultSet and then use the object to fill the GUI.
Which would be the criteria to choose from one or the other approach?
Thanks a lot.