关于Hibernate的查询

(1)Hibernate中Query.uniqueResult();
 如果有多个值抛错
 如果有值且只有一个,返回一个object
 如果没值,返回null
(2)setEntity(0,organization) 是把organization的值插入到HQL中的第一个?中,是实体类型
其他的如:setString(1,name)name是传过来到参数

分页查询

java 代码
  1. public PageList findPreEmployeesByOrganization(   
  2.             final Organization organization, final PageRequest pageRequest,   
  3.             final SortInfo sortInfo)   
  4.     {   
  5.         HibernateCallback callBack = new HibernateCallback()   
  6.         {   
  7.             public Object doInHibernate(Session session)   
  8.                     throws HibernateException, SQLException   
  9.             {   
  10.                 String queryString = "select distinct e from Employee e join e.posts pe join pe.post p join   
  11.  
  12. p.organizations o where o.organization.organizationId = ? and e.postStatus = 2"  
  13.                         + sortInfo.toString();   
  14.   
  15.                 List list = session.createQuery(queryString).setEntity(0,   
  16.                         organization).setFirstResult(pageRequest.getStartNum())   
  17.                         .setMaxResults(pageRequest.getPagesize()).list();   
  18.   
  19.                 String countQueryString = "select count(distinct e) from Employee e join e.posts pe join   
  20.  
  21. pe.post p join p.organizations o where o.organization.organizationId = ? and e.postStatus = 2";   
  22.                 int recCount = ((Integer) session.createQuery(countQueryString)   
  23.                         .setEntity(0, organization).uniqueResult()).intValue();   
  24.                 PageList pageList = new PageList(list, pageRequest   
  25.                         .getPagesize(), recCount, pageRequest.getPageno());   
  26.                 return pageList;   
  27.             }   
  28.         };   
  29.         return (PageList) getHibernateTemplate().execute(callBack);   
  30.     }  

你可能感兴趣的:(Hibernate)