-->
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.  [ 4 posts ] 
Author Message
 Post subject: how can i get one object from an inner join?
PostPosted: Tue Nov 18, 2003 10:01 pm 
Beginner
Beginner

Joined: Sat Nov 01, 2003 6:14 am
Posts: 30
i use a HQL like this:

"from Post as post inner join fetch post.thread , post.thread.forum"

in my opion , it will return an object instance of Post , am i right?

but when i do this, java.lang.ClassCastException is thrown

Code:
Collection result = testquery.list();

            logger.debug("get test post list result is " + result);

            Iterator resultIter = result.iterator();
            while(resultIter.hasNext())
            {
               Post post = (Post)resultIter.next();
               logger.debug("get post is " + post + " with forum is :" + post.getThread().getForum());
            }


what's the problem with me?


Top
 Profile  
 
 Post subject:
PostPosted: Tue Nov 18, 2003 10:04 pm 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 12:50 pm
Posts: 5130
Location: Melbourne, Australia
nope, it will return an ordered pair of Post, Forum.

perhaps you meant to write:

Code:
from Post as post
inner join fetch post.thread
inner join fetch post.thread.forum


Top
 Profile  
 
 Post subject:
PostPosted: Tue Nov 18, 2003 10:09 pm 
Beginner
Beginner

Joined: Sat Nov 01, 2003 6:14 am
Posts: 30
gavin wrote:
nope, it will return an ordered pair of Post, Forum.

perhaps you meant to write:

Code:
from Post as post
inner join fetch post.thread
inner join fetch post.thread.forum


wonderful!! that's just i need!!

thanks for your help!

i love hibernate and you :) (i am not a gay)


Top
 Profile  
 
 Post subject:
PostPosted: Tue Nov 18, 2003 10:13 pm 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 12:50 pm
Posts: 5130
Location: Melbourne, Australia
I love you too man - and I am gay.



















Not really ;)


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 4 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.