Top "Nativequery" questions

JPA concept that allows queries in your native database syntax (instead of JPQL)

Hibernate-generated column aliases break AliasToBeanResultTransformer when using query

What I am trying to achieve is to set a result transformer on a query defined in the following way: …

java hibernate alias nativequery
How to use @ConstructorResult annotation

I have some native query and want to map the result of query execution into List of NON-Entity POJO classes: @…

java jpa nativequery
Paging Native SQL Query in JPA with Hibernate without error

Thanks for your attention, and sorry for mi English :S I'm using JPA 2.0 with Hibernate 4.X to do some sql …

java hibernate jpa nativequery
NativeQuery Spring Data return object

I need to implement a query in Spring Data like this :- Select User.name, sum(Activity.minutes) From User, …

java jpa spring-data nativequery