首页 > Web开发 > 详细

一列 多列 查询 基于hibernate

时间:2015-11-12 20:00:39      阅读:251      评论:0      收藏:0      [点我收藏+]

package com.haha.test;

import java.util.List;

import org.hibernate.Hibernate;
import org.hibernate.Query;
import org.hibernate.Session;

import com.haha.dao.HibernateSessionFactory;

public class Test一列 {


public static void main(String[] args) {
String hql="select b.title from Books b where b.title like ‘java%‘";
Session ss=HibernateSessionFactory.getSession();
Query qq=ss.createQuery(hql);
List<String> list=qq.list();
for(String s:list){
System.out.println(s);
}
}

}

 

 

2

package com.haha.test;

import java.util.List;

import org.hibernate.Query;
import org.hibernate.Session;

import com.haha.dao.HibernateSessionFactory;

public class Test多列 {

/**
* @param args
*/
public static void main(String[] args) {
String hql=
"select b.title,b.unitprice from Books b where b.title like ‘java%‘";
Session ss=HibernateSessionFactory.getSession();
Query qq=ss.createQuery(hql);
List<Object[]> list=qq.list();
for(Object[] objs:list){
String title=(String) objs[0];
Double price=(Double) objs[1];
System.out.println(title+","+price);
}

}

}

一列 多列 查询 基于hibernate

原文:http://www.cnblogs.com/tian114527375/p/4959784.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!