Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

FIX: You may receive an error message when you use an escaped single quotation mark to set a parameter value for a prepared statement in the SQL Server 2005 JDBC Driver


Bug #: 748 (SQL Hotfix)

↑ Back to the top


Microsoft distributes Microsoft SQL Server 2005 fixes as one downloadable file. Because the fixes are cumulative, each new release contains all the hotfixes and all the security fixes that were included with the previous SQL Server 2005 fix release.

↑ Back to the top


Summary

This article describes the following about this hotfix release:
  • The issues that are fixed by the hotfix package
  • The prerequisites for installing the hotfix package
  • Whether you must restart the computer after you install the hotfix package
  • Whether you must make any registry changes
  • The files that are contained in the hotfix package

↑ Back to the top


Symptoms

In the Microsoft SQL Server 2005 JDBC Driver, you use an escaped single quotation mark in a string literal to set a parameter value for a prepared statement. When you do this, you may receive the following error message:
Exception in thread "main" com.microsoft.sqlserver.jdbc.SQLServerException: The index 1 is out of range.
at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDriverError(Unknown Source)
at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.setterGetParam(Unknown Source)
at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.setString(Unknown Source)

↑ Back to the top


Resolution

Hotfix information

A supported hotfix is available from Microsoft. However, this hotfix is intended to correct only the problem that is described in this article. Apply this hotfix only to systems that are experiencing this specific problem. This hotfix might receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next software update that contains this hotfix.

If the hotfix is available for download, there is a "Hotfix download available" section at the top of this Knowledge Base article. If this section does not appear, contact Microsoft Customer Service and Support to obtain the hotfix.

Note If additional issues occur or if any troubleshooting is required, you might have to create a separate service request. The usual support costs will apply to additional support questions and issues that do not qualify for this specific hotfix. For a complete list of Microsoft Customer Service and Support telephone numbers or to create a separate service request, visit the following Microsoft Web site: Note The "Hotfix download available" form displays the languages for which the hotfix is available. If you do not see your language, it is because a hotfix is not available for that language.

Prerequisites

There are no prerequisites for this hotfix.

Restart information

You do not have to restart the computer after you apply this hotfix.

Registry information

You do not have to change the registry.

Hotfix file information

This hotfix contains only those files that are required to correct the issues that this article lists. This hotfix may not contain all the files that you must have to fully update a product to the latest build.

The English version of this hotfix has the file attributes (or later file attributes) that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the Time Zone tab in the Date and Time item in Control Panel.
File nameFile versionFile sizeDateTimePlatform
Sqljdbc.jarNot Applicable231,84417-May-200601:29Not Applicable
Sqljdbc_xa.dll1.0.809.20548,53617-May-200601:29x64
Sqljdbc_xa.dll1.0.809.20537,27217-May-200601:29x86

↑ Back to the top


Status

Microsoft has confirmed that this is a bug in the Microsoft products that are listed in the "Applies to" section.

↑ Back to the top


More Information

For more information about software update terminology, click the following article number to view the article in the Microsoft Knowledge Base:

824684 Description of the standard terminology that is used to describe Microsoft software updates

Steps to reproduce the problem

Compile and then run the following Java code sample.
import java.sql.*;

public class SQL2K5 {


public static void main(String[] args) throws SQLException
{
try
{
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
Connection conn =
DriverManager.getConnection("jdbc:sqlserver://<Server>:1433;DatabaseName=<DatabaseName>","<UserId>","<Password>");

Statement stmt = conn.createStatement();
try { stmt.executeUpdate("drop table t_Repro748"); } catch(Exception ignored) {}
stmt.executeUpdate("create table t_Repro748(col1 varchar(50), col2 int)");
stmt.executeUpdate("insert into t_Repro748(col1,col2) values('This test has failed!',1)");
PreparedStatement pstmt = conn.prepareStatement("update t_Repro748 set col1 = 'This test''s succeeded!',col2=?");
pstmt.setInt(1, 3);
pstmt.executeUpdate();
ResultSet rs = stmt.executeQuery("select * from t_Repro748");
while (rs.next())
System.out.println(rs.getString(1));
rs.close();
stmt.executeUpdate("drop table t_Repro748");
stmt.close();
conn.close();
}
catch(Exception e)
{
System.out.println(e);
e.printStackTrace();
}


}
}
Note To use this code sample, replace the following placeholders:
  • Replace <Server> by using the name of the instance of SQL Server.
  • Replace <DatabaseName> by using the name of the database.
  • Replace <UserId> by using your user ID.
  • Replace <Password> by using your password.
The third-party products that this article discusses are manufactured by companies that are independent of Microsoft. Microsoft makes no warranty, implied or otherwise, regarding the performance or reliability of these products.

↑ Back to the top


Keywords: kbautohotfix, kbentirenet, kbhotfixserver, kbqfe, kbpubtypekc, kb

↑ Back to the top

Article Info
Article ID : 919568
Revision : 3
Created on : 3/30/2017
Published on : 3/30/2017
Exists online : False
Views : 207