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.
|
Short answer:Use Long answer:This depends very much on which JDBC driver you are using. You might want to take a look at this page, which describes the behavior of MySQL, Oracle, SQL Server, and DB2. Major take-aways:
MySQL is an especially strange case. See this article. It sounds like if you call Another example: here's the documentation for the PostgreSQL behavior. If auto-commit is turned on, then the ResultSet will fetch all the rows at once, but if it's off, then you can use One last thing to keep in mind: these JDBC driver settings only affect what happens on the client side. The server may still load the entire result set into memory, but you can control how the client downloads the results. |
|||||
|
|
Could you not achieve this by setting the fetch size for your Statement to 1? If you only fetch 1 row at a time each row shouldn't be loaded until you called next() on the ResultSet. e.g.
|
|||||||
|
|
I think what you would want to do is defer the actually loading of the ResultSet itself. You would need to implement that manually. |
|||
|
|
|
You will find this a LOT easier using hibernate. You will basically have to roll-your-own if you are using jdbc directly. The fetching strategies in hibernate are highly configurable, and will most likely offer performance options you weren't even aware of. |
|||