SQLServer 2000 Driver for JDBC][SQLServer]传入的表格格式数据流(TDS)远程过程调用(RPC)协议流不正确解决方法

时间:2023-07-04 20:56:44

问题:[SQLServer 2000 Driver for JDBC][SQLServer]传入的表格格式数据流(TDS)远程过程调用(RPC)协议流不正确。参数 1 (""): 数据类型 0x38 未知

问题分析:这里是Java代码用的sql server2000 ,而数据库用的sql server 2005 .

解决方法:


下载sql 2005 驱动:


http://www.microsoft.com/downloads/details.aspx?FamilyID=E22BC83B-32FF-4474-A44A-22B6AE2C4E17&displaylang=zh-cn

修改1:

Sql代码 
  1. Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver"); // 2005 version
  2. Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver"); // 2000 version

修改2:

Sql代码 
  1. Connection con = DriverManager.getConnection("jdbc:sqlserver://<ServerName>;user=<UserName>;password=<Password>");//2005 version
  2. Connection con = DriverManager.getConnection("jdbc:microsoft:sqlserver://<ServerName>;user=<UserName>;password=<Password>");//2000 version

如:

Sql代码 
  1. //SQL2005 version
  2. connection.driver_class=com.microsoft.sqlserver.jdbc.SQLServerDriver
  3. Connection.url=jdbc:sqlserver://localhost:1433;DatabaseName=Hello