如何以可靠的方式编写/更新Oracle blob?
我正在尝试在 blob 列中编写和更新 pdf 文档,但我只能更新 blob,只写入比以前存储的数据更多的数据。如果我尝试使用较小的文档数据更新 blob 列,则只会得到损坏的 pdf。
首先,已使用 empty_blob() 函数初始化 blob 列。我在下面编写了示例 Java 类来测试此行为。我第一次使用“true”作为main方法的第一个参数来运行它,所以在第一行中存储了一个大约31kB的文档,在第二行中存储了一个278kB的文档。然后我用'false'作为参数运行它,这样两行应该更新交换文档。结果是,只有当我写入的数据比现有数据多时,我才会得到正确的结果。
如何编写一个以可靠方式写入和更新 blob 的方法,而不会担心二进制数据的大小?
import static org.apache.commons.io.IOUtils.copy;
import java.io.FileInputStream;
import java.io.OutputStream;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import oracle.jdbc.OracleDriver;
import oracle.jdbc.OracleResultSet;
import oracle.sql.BLOB;
import org.apache.commons.lang.ArrayUtils;
/**
* Prerequisites:
* 1) a table named 'x' must exists [create table x (i number, j blob);]
* 2) that table should have two columns [insert into x (i, j) values (1, empty_blob()); insert into x (i, j) values (2, empty_blob()); commit;]
* 3) download lsp.pdf from http://www.objectmentor.com/resources/articles/lsp.pdf
* 4) download dotguide.pdf from http://www.graphviz.org/Documentation/dotguide.pdf
*/
public class UpdateBlob {
public static void main(String[] args) throws Exception {
processFiles(new String[]{"lsp.pdf", "dotguide.pdf"}, Boolean.valueOf(args[0]));
}
public static void processFiles(String [] fileNames, boolean forward) throws Exception {
if(!forward){
ArrayUtils.reverse(a);
}
int idx = 1;
for(String fname : fileNames){
insert(idx++, fname);
}
}
private static void insert(int idx, String fname) throws Exception{
Connection conn = null;
PreparedStatement ps = null;
ResultSet rs = null;
try {
DriverManager.registerDriver(new OracleDriver());
conn = DriverManager.getConnection("jdbc:oracle:thin:@"+db+":"+port+":"+sid, user, pwd);
ps = conn.prepareStatement("select j from x where i = ? for update");
ps.setLong(1, idx);
rs = ps.executeQuery();
if (rs.next()) {
FileInputStream instream = new FileInputStream(fname);
BLOB blob = ((OracleResultSet)rs).getBLOB(1);
OutputStream outstream = blob.setBinaryStream(1L);
copy(instream, outstream);
instream.close();
outstream.close();
}
rs.close();
ps.close();
conn.close();
} catch (SQLException e) {
e.printStackTrace();
throw new Exception(e);
}
}
}
甲骨文版本: 11.1.0.7.0 - 64位
我甚至尝试了标准的JDBC API,但没有使用Oracle的特定API(如上例所示),但没有成功。