快速业务通道

使用JDBC和Hibernate来写入Blob型数据到Oracle中 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-16

使用JDBC和Hibernate来写入Blob型数据到Oracle中

时间:2011-07-28

Oracle的Blob字段比较特殊,他比long字段的性能要好很多,可以用来保存例如图片之类的二进制数据。

写入Blob字段和写入其它类型字段的方式非常不同,因为Blob自身有一个cursor,你必须使用cursor对blob进行操作,因而你在写入Blob之前,必须获得cursor才能进行写入,那么如何获得Blob的cursor呢?

这需要你先插入一个empty的blob,这将创建一个blob的cursor,然后你再把这个empty的blob的cursor用select查询出来,这样通过两步操作,你就获得了blob的cursor,可以真正的写入blob数据了。

看下面的JDBC的demo,把oraclejdbc.jar这个二进制文件写入数据库表javatest的content字段(这是一个blob型字段)

java代码:

import java.sql.*;    import java.io.*;    import oracle.sql.*;    public class WriteBlob { public static void main(String[] args) { try {    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());    Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:orcl","fankai","fankai");    conn.setAutoCommit(false); BLOB blob = null; PreparedStatement pstmt = conn.prepareStatement("insert into javatest(name,content) values(?,empty_blob())");    pstmt.setString(1,"fankai");    pstmt.executeUpdate();    pstmt.close(); pstmt = conn.prepareStatement("select content from javatest where name= ? for update");    pstmt.setString(1,"fankai");    ResultSet rset = pstmt.executeQuery();    if (rset.next()) blob = (BLOB) rset.getBlob(1); String fileName = "oraclejdbc.jar";    File f = new File(fileName);    FileInputStream fin = new FileInputStream(f);    System.out.println("file size = " + fin.available()); pstmt = conn.prepareStatement("update javatest set content=? where name=?"); OutputStream out = blob.getBinaryOutputStream(); int count = -1, total = 0;    byte[] data = new byte[(int)fin.available()];    fin.read(data);    out.write(data);    /*    byte[] data = new byte[blob.getBufferSize()]; 另一种实现方法,节省内存    while ((count = fin.read(data)) != -1) {    total += count;    out.write(data, 0, count);    }    */ fin.close();    out.close(); pstmt.setBlob(1,blob);    pstmt.setString(2,"fankai"); pstmt.executeUpdate();    pstmt.close(); conn.commit();    conn.close();    } catch (SQLException e) {    System.err.println(e.getMessage());    e.printStackTrace();    } catch (IOException e) {    System.err.println(e.getMessage());    }    } }

使用JDBC和Hibernate来写入Blob型数据到Oracle中(2)

时间:2011-07-28

仔细看上例,分三步:

1、插入空blob

into javatest(name,content) values(?,empty_blob());

2、获得blob的cursor

select content from javatest where name= ? for update;

注意!!!必须加for update,这将锁定该行,直至该行被修改完毕,保证不产生并发冲突。

3、update javatest set content=? where name=

用cursor往数据库写数据

这里面还有一点要提醒大家:

JDK1.3带的JDBC2.0规范是不完善的,只有读Blob

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号