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 (919568)



The information in this article applies to:

  • Microsoft SQL Server 2005 Java Database Connectivity Driver

Bug #: 748 (SQL Hotfix)
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.

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

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)

RESOLUTION

Hotfix information

A supported hotfix is now available from Microsoft, but it is only intended to correct the problem that is described in this article. Only apply it to systems that are experiencing this specific problem. This hotfix may receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next SQL Server 2005 JDBC Driver service pack that contains this hotfix.

To resolve this problem immediately, contact Microsoft Product Support Services to obtain the hotfix. For a complete list of Microsoft Product Support Services telephone numbers and information about support costs, visit the following Microsoft Web site:Note In special cases, charges that are ordinarily incurred for support calls may be canceled if a Microsoft Support Professional determines that a specific update will resolve your problem. The usual support costs will apply to additional support questions and issues that do not qualify for the specific update in question.

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

STATUS

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

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.

Modification Type:MinorLast Reviewed:7/26/2006
Keywords:kbQFE kbhotfixserver kbpubtypekc KB919568 kbAudITPRO kbAudDeveloper