Thinkfeng
Thinkfeng

导航

<2024年12月>
24252627282930
1234567
891011121314
15161718192021
22232425262728
2930311234
统计
  • 随笔 - 2
  • 文章 - 4
  • 评论 - 2
  • 引用 - 0

常用链接

留言簿(1)

随笔档案

文章档案

搜索

  •  

最新评论

阅读排行榜

评论排行榜

 

 

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)  编辑  收藏

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


网站导航: