本文介绍了大堂关闭。 ERRORCODE = -4470,SQLSTATE = null的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用IBM websphere商业和db2,具有以下代码:
I am using IBM websphere commerce and db2, have following piece of code
Clob clobVar = null;
if (result.elementAt(3) != null)
clobVar = (Clob) result.elementAt(3);
if (clobVar == null) {
infoTable.put("EInfo", "");
} else {
stringTemp = clobVar.getSubString(1, (int) clobVar.length());
infoTable.put("EInfo", stringTemp);
}
代码工作正常,直到
clobVar = (Clob) result.elementAt(3);
但一旦执行到
stringTemp = clobVar.getSubString(1, (int) clobVar.length());
系统抛出异常
[jcc] [10120] [11936] [4.3.111]操作无效:Lob关闭。 ERRORCODE = -4470,SQLSTATE = null
我做错了什么?
如何解决这个问题?
推荐答案
这个问题可以通过添加 progressiveStreaming = 2;
连接url的参数
This issue can be solved by adding progressiveStreaming=2;
argument to the connection url
完全指定的连接URL如下:
The fully specified Connection URL was to be given as below:
jdbc:db2://localhost:50000/SAMPLE:progressiveStreaming=2;
如果您对该参数有异常,请添加以下内容:
Incase you have exception on that parameter add the following to it:
jdbc:db2://localhost:50000/SAMPLE:driverType=4;fullyMaterializeLobData=true;fullyMaterializeInputStreams=true;progressiveStreaming=2;progresssiveLocators=2;
最好使用 db2jcc4.jar
这篇关于大堂关闭。 ERRORCODE = -4470,SQLSTATE = null的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!