Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
1k views

Native SQL query for an Hibernate entity using @Formula results in NullPointerException

I've got an simple Hibernate entity for which I use the @Formula annotion: @Id private Long id; private String name; @Formula("(select count(f.*) from foo f where f.id = id)") private long bar; ...
2
votes
1answer
231 views

How to define table aliases for joined tables in plain SQL queries?

I have an entity that is mapped with a <join> element like this: <class name="Entity" table="Entites"> <id name="Id"> <generator class="guid" /> </id> ...
2
votes
1answer
3k views

getting result set into DTO with native SQL Query in Hibernate

I have a query like below select f.id, s.name, ss.name from first f left join second s on f.id = s.id left join second ss on f.sId = ss.id If I could use HQL, I would have used HQL constructor ...
1
vote
0answers
25 views

How to Map this in Hibernate

I'm having problems mapping this. I have 2 Pojos Menu and MenuItem public class Menu implements Serializable { public BigDecimal id; public String key; public List<MenuItem> ...
1
vote
4answers
359 views

Hibernate Native SQL Query retrieving entities and collections

This is my situation, I have two basic POJO's which I've given a simple hibernate mapping : Person - PersonId - Name - Books Book - Code - Description My SQL Query returns rows that look ...
1
vote
2answers
354 views

ABAP: using SQL Server table hints in a Native SQL block

I have an ABAP class with various methods for reading from / writing to a remote Microsoft SQL Server 2005 instance. Everything works as expected. Now I've been advised to add a SQL Server table hint ...
1
vote
1answer
511 views

Hibernate = Column not found

I am running an aggregate function in java through hibernate and for some reason it is giving me this error: INFO Binary:182 - could not read column value from result set: l_date; Column 'l_date' ...
0
votes
0answers
163 views

Hibernate ResultTransformer with addEntity - what's the correct syntax?

Consider the following query: "SELECT a.code as code,{locFrom.*} " + "FROM audit.auditlogrecord a " + "LEFT OUTER JOIN iwrs.location locFrom on locFrom.id=old_value " I want to map the result to ...
0
votes
0answers
573 views

Hibernate: one-to-many relationship with no foreign key

I am looking to map two tables that have no foreign key relationship as a one-to-many mapping. The relationship itself is computed using Native SQL. I am using the <loader query-ref> field in my ...
0
votes
0answers
126 views

NHibernate: References still being eagerly selected after specifying AddJoin

I have a query which is something like this: Session.CreateSQLQuery( @"SELECT f.*, b.*, z.* FROM Foo f LEFT OUTER JOIN Bar b ON b.Id = f.BarId LEFT OUTER JOIN Zar z ON z.Id = b.ZarId" ...