-->
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.  [ 3 posts ] 
Author Message
 Post subject: hibernate exception
PostPosted: Sat Apr 10, 2010 9:16 am 
Newbie

Joined: Sat Apr 10, 2010 9:12 am
Posts: 6
hi everyone

I am trting to load an object from my database table MyUserType:

Code:
        Session session = HibernateUtil.openSession();
    MyUserType type=(MyUserType) session.get(MyUserType.class,"1");


but I got this execption:
Code:
org.hibernate.MappingException: Unknown entity: com.ext.portlet.login.model.MyUserType


so I tried with sql query:
Code:
Session session = HibernateUtil.openSession();
MyUserType type=(MyUserType) session.createSQLQuery("select *  from MyUserType where myusertypeid=1;").uniqueResult();


and I got this exception:
Code:
java.lang.ClassCastException: [Ljava.lang.Object; cannot be cast to com.ext.portlet.login.model.MyUserType


I also tried with hql query
Code:
Session session = HibernateUtil.openSession();
MyUserType type=(MyUserType) session.createQuery("from MyUserType where myusertypeid=1").uniqueResult();


and I've got this new exception:
Code:
org.hibernate.exception.SQLGrammarException: could not execute query


thanks in advance


Top
 Profile  
 
 Post subject: Re: hibernate exception
PostPosted: Sat Apr 10, 2010 10:44 am 
Newbie

Joined: Thu Jul 26, 2007 8:25 am
Posts: 6
is MyUserType.class available in same package specified below in your classpath (note that if you are doing in Web application then it should be in WEB-INF/classes or WEB-INF/lib)?
if yes please share mapping file.


Top
 Profile  
 
 Post subject: Re: hibernate exception
PostPosted: Sun Apr 11, 2010 10:08 am 
Newbie

Joined: Sat Apr 10, 2010 9:12 am
Posts: 6
well I am working with liferay portal


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