Thread: Hibernate Use
View Single Post
  #3 (permalink)  
Old 05-21-2008, 05:05 AM
pegitha pegitha is offline
Member
 
Join Date: Apr 2007
Location: Indiana
Posts: 84
pegitha is on a distinguished road
Send a message via Skype™ to pegitha
To get one object by primary key:
getHibernateTemplate().load(MyObject.class, primaryKey);
for a list using HQL:
getHibernateTemplate().find("from MyObject obj where obj.recordStatus='A' ");
or use the Criteria API which personally I think is awesome
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Reply With Quote