java操作clob

  1. public int addXmlTemp(Emr_cda_standard_ntDTO bean,InputData inputData) throws GeneralException{  
  2.          logger.info(" addXmlTemp begin ......");  
  3.           String data = bean.getContent();  
  4.           Writer outStream = null;  
  5.           int count = 0;  
  6.          //通过JDBC获得数据库连接  
  7.           try {  
  8.           Connection con = this.getConnection();  
  9.           con.setAutoCommit(false);  
  10.           Statement st = con.createStatement();  
  11.           //插入一个空对象empty_clob(),这个是必须的  
  12.           st.executeUpdate("insert into xml_temp(ID, xml_content)values("+bean.getCode()+", empty_clob())");  
  13.           //锁定数据行进行更新,注意“for update”语句,这里不用for update锁定不可以插入clob  
  14.           ResultSet rs = st.executeQuery("select xml_content from xml_temp where id="+bean.getCode()+" for update");  
  15.           if (rs.next())  
  16.           {  
  17.           //得到java.sql.Clob对象后强制转换为oracle.sql.CLOB  
  18.           CLOB clob = (CLOB) rs.getClob("XML_CONTENT");  
  19.           outStream = clob.getCharacterOutputStream();  
  20.           //data是传入的字符串,定义:String data  
  21.           char[] c = data.toCharArray();  
  22.           outStream.write(c, 0, c.length);  
  23.           }  
  24.           outStream.flush();  
  25.           outStream.close();  
  26.           con.commit();  
  27.           con.close();  
  28.           count = 1;  
  29.           } catch (Exception e) {  
  30.            e.printStackTrace();  
  31.           }  
  32.           
  33.          logger.info(" addXmlTemp end ......");  
  34.           
  35.          return count;  
  36.     }  
参考自:http://www.linuxidc.com/Linux/2013-06/86381.htm

                
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值