首页 > 解决方案 > 无法使用 JDBC 连接到 SQL Server

问题描述

我在使用 Netbeans 中的 JDBC 驱动程序连接到数据库服务器时遇到问题。我已经尝试了一切,启用 TCP/IP,打开端口,我已经按照在线教程进行操作。它只是行不通。

这是我在控制台中收到的错误消息:

Information: Error: The TCP / IP connection could not be made to the MANUEL-PC host, port 1433. Error: "Connection refused: connect Verify the connection properties, check that there is an instance of SQL Server running on the host and accepting TCP / IP connections on the port and verify that there is no firewall blocking TCP connections on the port. "

我们正在使用的课程开始...

 public class DBPosteo
{
    private final String URL ="jdbc:sqlserver://MANUEL-PC\\SQLEXPRESS:1433;databaseName=DLC_MotorDeBusqueda;integratedSecurity=true"; 


    private Connection con;
    String query = "";
    PreparedStatement pstmt;
    ResultSet rs;

    public void init()
            throws ClassNotFoundException, SQLException
    {
        Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
        con = DriverManager.getConnection(URL);
    }

SQL Management Studio 中的数据库服务器名称

在此先感谢您的帮助...我一生中从未在数据库方面如此挣扎:)

标签: javasql-serverjdbcnetbeans

解决方案


删除端口号

仅指定实例名称 ( SQLEXPRESS)端口号 ( 1433),切勿同时指定两者。

由于端口1433是为未命名的实例保留的,因此SQLEXPRESS命名实例将位于不同的端口上,除非您专门配置它(不太可能),否则该端口是动态的并且可以在重新启动时更改,因此您需要命名查找。


推荐阅读