Hi,
I'm experienced with Toplink, but need to transfer a Toplink technique to Hibernate for some application integration requirements we have.
In Toplink a DataReadQuery is purely a SQL query result, i.e. not really object relational mapping.
I can execute a query and then iterate over the result rows, and for each row iterate over the result columns.
This is quite useful for queries (like report queries) that don't really need object relational mapping, or where the query is dynamic and returned fields are not pre-determined.
Is their an equivalent in Hibernate?
I'm aware there are other options (Spring/SQL Maps), but I would prefer to stick with Hibernate so that I can hand over the code to a dev. team who are heavily using Hibernate.
Thanks.
Mike S.
|