Using the java.sql.ResultSet
Class, I want to get all the cells in a row as an Object List, or Object array, and postpone the processing/fetching of each cell, for performance concerns. The following method:
Object obj = resultSet.getObject(i);
should be called columnCount
number of times.
What is the fastest way? / Why is a seemingly obvious functionality missing?