My old Hibernate-only code uses something like

session.createSQLQuery("SELECT * FROM CATS")
.addScalar("ID", Hibernate.LONG)
.addScalar("NAME", Hibernate.STRING)
.addScalar("BIRTHDATE", Hibernate.DATE)

In the new project we use Hibernate EntityManager (the JPA implementation).

Is there an equivalent to those calls to addScalar()? Do I need to specify the types of the returned columns as I did before?

For example, if I don't use addScalar will the SQL query results be cached?

link|improve this question

56% accept rate
feedback

2 Answers

I was looking for the exact same thing and couldn't find anything in JPA.

Wow, 6 months and not answer :)

Don't know if it helps or not, but I've found a workaround:

The tick is that you cannot cast directly to SQLQuery, you have to cast to HibernateQuery, then call getHibernateQuery, then cast the result to SQLQuery.

And now for some (scala) code:

val sql = "select distinct story as story from ...";
val q: Query = getEntityManager().createNativeQuery(sql);
//hello nasty hack
q.asInstanceOf[HibernateQuery].getHibernateQuery().asInstanceOf[SQLQuery].addScalar("story", StandardBasicTypes.LONG);
//next, caching  
q.setHint("org.hibernate.cacheable", true);
q.setHint("org.hibernate.cacheRegion", "query.getTopLinks");

ugly but it does the job :)

link|improve this answer
feedback

The post Hibernate native query - char(3) column

seems to offer a similar, shorter solution, which appears to work for me:

q2.unwrap(SQLQuery.class).addScalar("sc_cur_code", StringType.INSTANCE);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.