gpt4 book ai didi

Java7 sqljdbc4 - getConnection() 上的 SQL 错误 08S01

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:12:13 25 4
gpt4 key购买 nike

我正在尝试编写一个非常简单的 GUI 应用程序来插入一些记录进入数据库,然后读回一些记录(没什么特别的,只有 1 个表有 3 行,没有关系)。来源...

package EntryProg;
import java.sql.*;
import com.microsoft.sqlserver.jdbc.*;



public class CourseDataEntryHandler
{
private Connection connect;
private CallableStatement callState;
private ResultSet rSet;
private SQLServerDataSource dSource;

public CourseDataEntryHandler()
{
rSet = null;
callState = null;

dSource = new SQLServerDataSource();
dSource.setUser(REDACTED);
dSource.setPassword(REDACTED);
dSource.setServerName(REDACTED);
dSource.setPortNumber(REDACTED);
dSource.setDatabaseName(REDACTED);
dSource.setEncrypt(true);
dSource.setTrustServerCertificate(true);
try
{

这里有错误

            connect = dSource.getConnection();

结束错误

        }
catch (SQLServerException e)
{
//TODO Figure out how to handle -- logging for now, console
do
{
System.out.println(e.getErrorCode());
System.out.println(e.getMessage());
System.out.println(e.getSQLState());
e = (SQLServerException) e.getNextException();
} while (e != null);
System.out.println("END");
System.out.println();
}
}

我收到以下错误...

(代码)0

(消息)SQL Server 没有返回响应。连接已关闭。

(状态)08S01

我已验证用户、密码、服务器名称、端口和数据库名称都是准确的。如果我将用户名更改为无效用户名,我会收到“无法登录”错误报告,因此我知道我正在访问服务器。

我无法完全连接一次,所以我知道这不是“连接太多”的问题,因为目前唯一通过 sql management studio 登录到服务器的人是我。当我注销时它也不起作用,所以绝对不是连接 # 问题。

应用程序用户也具有数据读取器/数据写入器权限。(如果这很重要,我正在使用 Eclipse。我正在引用 sqljdbc4.jar 库)。

我不知道该去哪里解决这个问题。任何帮助将不胜感激。

编辑更新 - 我还尝试了一个连接字符串并使用 DriverManager.getConnection(connString) 来设置连接,但也没有用。结果是一样的。另外,SQL server 2008 r2 是我使用的 sql server 版本。

编辑我写了一个快速的 C# 程序来测试连接,果然连接在 .net 中工作正常,不幸的是我必须为这个项目使用 java(这是我选择自己为一个类做的一个项目,唯一的要求是它是用 Java 编写的...老师也不知道发生了什么)。

最佳答案

setEncrypt(true) 注释行:

...
dSource.setDatabaseName(REDACTED);
//dSource.setEncrypt(true);
dSource.setTrustServerCertificate(true);
...

您可能在加密设置方面遇到了问题。来自setEncrypt(...)文档:

If the encrypt property is set to true, the Microsoft SQL Server JDBC Driver uses the JVM's default JSSE security provider to negotiate SSL encryption with SQL Server. The default security provider may not support all of the features required to negotiate SSL encryption successfully. For example, the default security provider may not support the size of the RSA public key used in the SQL Server SSL certificate. In this case, the default security provider might raise an error that will cause the JDBC driver to terminate the connection. In order to resolve this issue, do one of the following:

  • Configure the SQL Server with a server certificate that has a smaller RSA public key

  • Configure the JVM to use a different JSSE security provider in the "/lib/security/java.security" security properties file

  • Use a different JVM

更新

在 Java 版本 1.6.0_29 和 7.0.0_1 中,Oracle 引入了针对 SSL/TLS BEAST 攻击的安全修复程序,很可能会导致同样的问题。众所周知,上述安全修复程序会对使用 jTDS 驱动程序和 Microsoft 驱动程序的 MSSQL Server 的数据库连接造成麻烦。你也可以

  • 决定不使用 setEncrypt(true)(如上所述)来使用加密
  • 或者,如果它是由 MSSQL Server 强制执行的,您可以通过设置 -Djsse.enableCBCProtection=false 系统属性来关闭 JVM 中的 Java 修复。请注意,它会影响同一虚拟机内的所有 SSL 连接。

关于Java7 sqljdbc4 - getConnection() 上的 SQL 错误 08S01,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8988945/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com