sqlserver2000的jdbc驱动和PreparedStatement的性能问题。

人们都说用PreparedStatement会提高程序的性能。我在sqlserver下面试了一下,结果令我大吃一惊 。
connection.setAutoCommit(false);
pstmt = connection.prepareStatement(sql);
pstmt.setFetchSize(100);
pstmt.setString(1,"026011009004");
ResultSet rs = pstmt.executeQuery();
connection.commit();
做一个查询竟然需要6秒多,在数据库里数据很少的情况下很快的,但是数据库表里面的记录多到100万的时候查询真的很慢。一开始我怀疑是jdbc驱动的事情可是我换了一个sqlserver的jdbc驱动结果还是一样。

当向pstmt 设置int类型的参数时性能又正常了。
为什么设置string类型的时候会出现的?令我百思不得其解。
我查看sqlserver jdbc 驱动的文档 发现里面有这么一个参数:
SendStringParameters
AsUnicode
SendStringParametersAsUnicode={true | false}. Determines
whether string parameters are sent to the SQL Server database in
Unicode or in the default character encoding of the database.
True means that string parameters are sent to SQL Server in
Unicode. False means that they are sent in the default encoding,
which can improve performance because the server does not need
to convert Unicode characters to the default encoding. You
should, however, use default encoding only if the parameter
string data that you specify is consistent with the default
encoding of the database.
The default is true

原来string型的参数传到数据库里面默认是转换成unicode的。
当我把SendStringParameters 设置成false时,查询的性能得到了巨大的提高,原来用6秒的查询现在只需要16毫秒了。
问题解决了。
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值