Heya, I m new to hibernate. I have to say it really simplifies everything for the SQL query. However, manipulating the returned result is a headache for me at the moment.
The result is returned as list. Most of the time I really want the result to be in result set so that I can manipulate it easier as using result set, you can specifies value by column name or index. In List, I am pretty much owned by own noobity.
In some ocassion, I can retrieve the list into a JSF data table and then just call the member directly. I cannot always do this. Don't ask me why. @.@ spinning head.
Is there a way to get resultset instead of list for hibernate?
ResultSets instead of lists of entities? If so, why do you need Hibernate at all?ResultSetis better thanList<Entity>. I really can't imagine of any one.