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 set. However hibernate is yelling about the lack of a key in the set mapping. I used this example from hibernate documentation which also has no key.

http://docs.jboss.org/hibernate/core/3.3/reference/en/html/querysql.html#querysql-load

<set name="employments" inverse="true">
    <key/>
    <one-to-many class="Employment"/>
    <loader query-ref="employments"/>
</set>

<sql-query name="employments">
    <load-collection alias="emp" role="Person.employments"/>
    SELECT {emp.*}
    FROM EMPLOYMENT emp
    WHERE EMPLOYER = :id
    ORDER BY STARTDATE ASC, EMPLOYEE ASC
</sql-query>

Please advise

link|improve this question
The above code sample is copy/pasted from Hibernate docs - and it works just fine. You need to show us your mappings and your table structure as well as exception thrown. – ChssPly76 May 12 '11 at 22:00
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.