Hi,
I was trying to recover a large amount of data using Query.scroll() and the ScrollableResults object returned.
The problem was that there's no way to get column data by column name (ScrollableResults interface has only 'getXXX(int index)' methods), so now I'm using the JDBC approach and working with javax.sql.Connection, javax.sql.PreparedStatement and javax.sql.ResultSet.
My question is if there will be 'getXXX(String columnName)' methods in ScrollableResults interface in future Hibernate versions.
Thank you.
|