无法使用 JDBC 连接到 SQL Server

Man*_*rba 1 java sql-server netbeans jdbc

我在使用 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);
    }
Run Code Online (Sandbox Code Playgroud)

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

预先感谢您的帮助...我一生中从未在数据库方面遇到过如此大的困难:)

And*_*eas 5

删除端口号

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

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