It is possible in hibernate to get a result of a query to a mapped db object.
Is it possible to create a non-persistent object and get the query result into this object?
for example
session.createSQLQuery(select a,b,c from table).list.addEntity(myclass.class)
if myclass is:
public class myclass{
private int a;
private int b;
private int c;
.
.
.
}