I was wondering if this design point/flaw is still valid:
QueryLoader
http://kickjava.com/src/org/hibernate/l ... r.java.htm
Makes Iterator:
http://kickjava.com/src/org/hibernate/i ... l.java.htm
QueryLoader gives ResultSet and PreparedStatement to iterator.
Every time Qeury.iterator() is called, it executes queries. So, if you do not iterate code to the end it leaves PS, RS open. close()-method is only called if hasNext() is false. (postNext())
Commit does not close these since it does not have access to them (?).
This code leaves preparedstatement open and finally after 100-200 open preparedstatements hibernate crashes:
Code:
if(query.iterate().hasNext()) query.iterate().next();
I think this is a major design issue. Is this considered as bug or "it works like this, just iterate to the end and use proper SQL-queries"?
We have hibernate version 3.1.2