Java

本类阅读TOP10

·使用MyEclipse开发Struts框架的Hello World!(录像1)
·hibernate配置笔记
·AOP编程入门--Java篇
·linux下Tomcat 5.0.20 与 Apache 2 安装/集成/配置
·在win2003下整合了整合Tomcat5.5+ apache_2.0.53+ mod_jk_2.0.47.dll
·构建Linux下IDE环境--Eclipse篇
·Jsp 连接 mySQL、Oracle 数据库备忘(Windows平台)
·ASP、JSP、PHP 三种技术比较
·Tomcat5.5.9的安装配置
·AWT GUI 设计笔记(二)

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
sqlserver2000的jdbc驱动和PreparedStatement的性能问题。

作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站

人们都说用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毫秒了。
问题解决了。



相关文章

相关软件