hibernate hql 多个一查询_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > hibernate hql 多个一查询

hibernate hql 多个一查询

 2011/12/16 9:08:46  qqjavagood  http://qqjavagood.iteye.com  我要评论(0)
  • 摘要:Sessions=sessionFactory.getCurrentSession();s.beginTransaction();Stringhql="fromTempPhotoEdittempPhotoEditleftjoinfetchtempPhotoEdit.tempPlanleftjoinfetchtempPhotoEdit.systemFodderwhereIB_ID=?";List<TempPhotoEdit>l=s.createQuery(hql)
  • 标签:Hql hibernate

   
Session s=sessionFactory.getCurrentSession();
		s.beginTransaction();
		
		String hql="from TempPhotoEdit tempPhotoEdit left join fetch tempPhotoEdit.tempPlan left join fetch tempPhotoEdit.systemFodder where IB_ID=?";
			
		List<TempPhotoEdit> l=s.createQuery(hql).setParameter(0,"25").list();
		System.out.println(l);
		s.getTransaction().commit();

?
 
发表评论
用户名: 匿名