-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: Confused about collections
PostPosted: Fri Jun 03, 2005 3:58 pm 
Newbie

Joined: Tue Apr 26, 2005 1:36 pm
Posts: 2
Hibernate version: 2.1.4

I have a one to many relationship, Person -> Role and a many to one relationship Role -> Permission. Each Role has one permission.

Below is how I would do a query in SQL. How would I do the same in HQL?

select * from Person person, Role role, Permission perm
where person.roleId = role.roleId and
role.permissionId = perm.permissionId and
perm.name = "Edit"

In HQL I'm thinking that I need to use elements but I'm not sure how.

Thanks


Top
 Profile  
 
 Post subject:
PostPosted: Fri Jun 03, 2005 4:57 pm 
Hibernate Team
Hibernate Team

Joined: Thu Dec 18, 2003 9:55 am
Posts: 1977
Location: France
select person
from Person person
join person.roles role
where role.permission.name = "Edit"

_________________
Anthony,
Get value thanks to your skills: http://www.redhat.com/certification


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.