我使用以下代码更新Oracle Clob:
CLOB tempClob = null;
try {
Connection conn = getConnection();
PreparedStatement = = conn.prepareStatement("UPDATE PROGRAM_HISTORY SET DETAILS = ? WHERE ID = 12");
tempClob = CLOB.createTemporary(conn, true, CLOB.DURATION_SESSION);
tempClob.open(CLOB.MODE_READWRITE);
Writer tempClobWriter = tempClob.getCharacterOutputStream();
tempClobWriter.write(clobData);
tempClobWriter.flush();
tempClobWriter.close();
tempClob.close();
pStmt.setClob(1, tempClob);
pStmt.execute();
} catch (Exception ex) { // Trap errors
System.out.println(" Error Inserting Clob : "+ex.toString());
ex.printStackTrace();
}finally{
if(tempClob != null ) tempClob.freeTemporary();
opstmt.close();
conn.close();
}
如您所见,在创建临时clob之后,我使用了tempClob.open(CLOB.MODE_READWRITE); 打开并使用tempClob.close()来收集;所以我的问题是这是必要的吗?如果是,为什么?因为我从谷歌搜索的一些示例代码没有这个程序。
我的第二个问题是,在finally语句中需要tempClob.close();我们必须在用完之后关闭临时clob就像连接一样?或者不需要这样做会自动释放?
答案 0 :(得分:1)
Oracle会话对象将保留对CLOB的引用,因此垃圾收集器不会触及它。会话结束时,它将自动释放。
请注意,实际临时CLOB内存不会存在于Java VM中的某个位置,而是存在于Oracle服务器进程(PGA)或临时表空间(磁盘)中,具体取决于您的数据库配置和当前工作负载。