Oracle CLOB在Hibernate框架下的一次应用

读取更新一张表,表里面有两个超长字段,类型为CLOB,表结构如图所示

由于所用系统Hibernate框架有问题,因此不能使用原生的getSession().get(this.entityClass,id)方法和getSession().saveOrUpdate(entity)方法,因此使用最原始的方法拼接sql做插入操作。

查询数据

public List<PlanDetail> queryPlanDetailList(int pageNo,int pageSize) {
        String querysql = "SELECT iw.finance_type AS \"financeType\",fp.name AS \"name\",iw.creator AS \"createPer\",iw.mender AS \"updatePer\",iw.create_time AS \"createTime\",iw.update_time AS \"updateTime\" FROM t_introduce_web iw,finance_plan fp WHERE iw.finance_type = fp.id";
        List<PlanDetail> list = getSession().createsqlQuery(querysql).setResultTransformer(Transformers.aliasToBean(PlanDetail.class)).setFirstResult((pageNo-1)*pageSize).setMaxResults(pageSize).list();
        return list;
}

上述拼接后querysql为:

SELECT iw.finance_type AS "financeType",fp.name AS "name",iw.creator AS "createPer",iw.mender AS "updatePer",iw.create_time AS "createTime",iw.update_time AS "updateTime" FROM t_introduce_web iw,finance_plan fp WHERE iw.finance_type = fp.id

PlanDetail 为放入数据实体类,SQL查询获取的字段名必须与实体类的变量名相同

public class PlanDetail implements Serializable{ private static final long serialVersionUID = 8109897836500448176L; public String id; public Clob introduce; public String introduceStr; public Clob commomQuestion; public String commomQuestionStr; public String financeType; public String createPer; public String updatePer; public String name; public Date createTime; public Date updateTime; private BigDecimal ROWNUM_; }

此处有一列名为 ROWNUM_, 为Hibernate取分页数据必须。

插入或修改数据

public void updatePlanDetail(PlanDetail planDetail) throws SerialException,sqlException {
        String commonQuestionStr = planDetail.getCommomQuestionStr();
        String introduceStr = planDetail.getIntroduceStr();
        String procedure = "DECLARE introduce CLOB\\:='" + introduceStr + "';commonQues CLOB\\:='" + commonQuestionStr + "';BEGIN "+"\n";
        String updatesql = "UPDATE t_introduce_web SET commons_problems = commonQues,introduce_web = introduce WHERE finance_type = '" + planDetail.getFinanceType() + "';";
        String updatesql = procedure + updatesql + "\n end;";
        getSession().createsqlQuery(sql).executeUpdate();
    }

上述拼接后updatesql 为:

DECLARE introduce CLOB\:='clob1';commonQues CLOB\:='clob2';BEGIN 
UPDATE t_introduce_web SET commons_problems  = commonQues,introduce_web = introduce,update_time = to_date('2016-11-10 21:27:01','yyyy-MM-dd HH24:mi:ss') WHERE finance_type = '655';
 end;
\:表示hibernate转义符

如果不加,则为报如下错误 org.hibernate.QueryException: Space is not allowed after parameter prefix ‘:’

如果单独在数据库中执行sql,不需要加斜杠。

相关文章

数据库版本:11.2.0.4 RAC(1)问题现象从EM里面可以看到,在23号早上8:45~8:55时,数据库等待会话暴增...
(一)问题背景最近在对一个大约200万行数据的表查看执行计划时,发现存在异常,理论上应该返回100多万...
(一)删除备份--DELETE命令用于删除RMAN备份记录及相应的物理文件。当使用RMAN执行备份操作时,会在RM...
(1)DRA介绍 数据恢复顾问(Data Recovery Advise)是一个诊断和修复数据库的工具,DRA能够修复数据文...
RMAN(Recovery Manager)是Oracle恢复管理器的简称,是集数据库备份(backup)、修复(restore)和恢复...
(1)备份对象 可以使用RMAN进行的备份对象如下: --整个数据库:备份所有的数据文件和控制文件; --数...