我无法在SQL Express中的netbeans项目和数据库之间建立连接

时间:2018-09-06 22:10:07

标签: java sql-server jdbc netbeans database-connection

我为解决该问题进行了很多更改,但仍然显示此错误:

线程“ main”中的异常com.microsoft.sqlserver.jdbc.SQLServerException:没有任何实现TCP / IP主机本地主机,波多黎各1433。错误:“连接超时。Verifique las propiedades deconxixión ,可以通过SQL Server eSQL实例来托管TCP / IP协议服务器,也可以通过使用TCP / IP协议来获得TCP / IP协议。”

这是我的代码

static Connection Con = null;
public static void main(String[] args) throws ClassNotFoundException, SQLException  {

    Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
    String url ="jdbc:sqlserver://localhost:1433;databaseName = curso; user = vinilop1114; password = vini2215";

    Con = DriverManager.getConnection(url);          
}

0 个答案:

没有答案