Thinkfeng
Thinkfeng

 

public  List find( final  String hsql,  final   int  firstRow,  final   int  maxRow)  throws  Exception 
   
return  getHibernateTemplate().executeFind( new  HibernateCallback() 
     
public  Object doInHibernate(Session s)  throws  HibernateException, SQLException 
           Query query  
=  s.createQuery(hsql); 
           query.setFirstResult(firstRow); 
           query.setMaxResults(maxRow); 
           List list  
=  query.list(); 
           
return  list; 
           }
 
     }
); 
}

 

posted on 2008-08-29 17:21 Thinkfeng 阅读(188) 评论(0)  编辑  收藏

只有注册用户登录后才能发表评论。


网站导航: