Is there a way to get a ResultSet you obtain from running a JDBC query to be lazily-loaded? I want each row to be loaded as I request it and not beforehand.
I think what you would want to do is defer the actually loading of the ResultSet itself. You would need to implement that manually.