当PreparedStatement中的参数遇到大字符串 - wubaodan - JavaEye技术网站

来源:百度文库 编辑:神马文学网 时间:2024/04/30 07:10:57
当PreparedStatement中的参数遇到大字符串
今天在JavaEye上看大牛们的博客突然看到一篇文章标题为:"PreparedStatement中setString方法的异常"让我大喜,以前在项目中遇到这个问题,一直没有得到解决今天终于明白了!
以前项目中的代码如下:
java 代码
sql = "INSERT INTO taw_attachment (attachmentname, attachmentfilename,"
+ "attachmentsize,cruser,crtime,info) VALUES (?,?,?,?,?,?)";
pstmt.setString( 6,info);//info.length() > 2000
pstmt.executeUpdate();
而数据库中对应的表Interface_log.info varchar2(4000);
在方法头加入如下代码:
java 代码
if (info!=null && info.length()>2000){
nfo = info.substring(0,2000); //给这个大文本截肢
}
当再次Debug时还是抛出:Java.sql.SQLException:数据大小超出此类型的最大值!
当使用原始的Statement接口后问题解决,郁闷啊!!!
今天在文章中看到:
现在通过Oracle提供的JDBC文档来详细看看问题的来由。
我们都知道Oracle提供了两种客户端访问方式OCI和thin,
在这两种方式下,字符串转换的过程如下:
1、JDBC OCI driver:
在JDBC文档中是这么说的:

If the value of NLS_LANG is set to a character set other than US7ASCII or WE8ISO8859P1, then the driver uses UTF8 as the client character set. This happens automatically and does not require any user intervention. OCI then converts the data from the database character set to UTF8. The JDBC OCI driver then passes the UTF8 data to the JDBC Class Library where the UTF8 data is converted to UTF-16. ”
2、JDBC thin driver:
JDBC文档是这样的:
“If the database character set is neither ASCII (US7ASCII) nor ISO Latin1 (WE8ISO8859P1), then the JDBC thin driver must impose size restrictions for SQL CHAR bind parameters that are more restrictive than normal database size limitations. This is necessary to allow for data expansion during conversion.
The JDBC thin driver checks SQL CHAR bind sizes when a setXXX() method (except for the setCharacterStream() method) is called. If the data size exceeds the size restriction, then the driver returns a SQL exception (SQLException: Data size bigger than max size for this type) from the setXXX() call. This limitation is necessary to avoid the chance of data corruption when conversion of character data occurs and increases the length of the data. This limitation is enforced in the following situations:
(1)Using the JDBC thin driver
(2)Using binds (not defines)
(3)Using SQL CHAR datatypes
(4)Connecting to a database whose character set is neither ASCII (US7ASCII) nor ISO Latin1 (WE8ISO8859P1)
When the database character set is neither US7ASCII nor WE8ISO8859P1, the JDBC thin driver converts Java UTF-16 characters to UTF-8 encoding bytes for SQL CHAR binds. The UTF-8 encoding bytes are then transferred to the database, and the database converts the UTF-8 encoding bytes to the database character set encoding.”
原来是JDBC在转换过程中对字符串的长度做了限制。这个限制和数据库中字段的实际长度没有关系。
所以,setCharacterStream()方法可以逃过字符转换限制,也就成为了解决此问题的方案之一。
而JDBC对转换字符长度的限制是为了转换过程中的数据扩展。
根据实际测试结果,在ZHS16GBK字符集和thin驱动下,2000-4000长度的varchar字段都只能插入1333个字节(约666个汉 字)。
To sum,解决PreparedStatement的setString中字符串长度问题可以有两种办法:
1、使用setCharacterStream()方法;
java 代码
pstmt.setCharacterStream(index,new InputStreamReader(myString, myString.length());
2、使用OCI驱动连接Oracle数据库。