这是我的Java代码:
import java.sql.*;
public class Database_connect
{
public static void main(String[] args) {
String url= "jdbc:sqlserver://localhost:1433;DatabaseName=Reena;instance=SQLSERVER;encrypt=true;TrustServerCertificate=true";
try{
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
System.out.println("Driver added");
Connection con=DriverManager.getConnection(url,"sa","Reena123");
System.out.println("connection established.");
con.close();
}
catch(ClassNotFoundException e)
{
System.out.println("Driver not loaded");
}
catch(SQLException e)
{
System.out.println("Not connected."+e.getMessage());
}
}
}
我检查了所有错误提及的内容。
但这仍然给我这个错误:
与主机localhost端口1433的TCP / IP连接失败。
错误:“连接超时。 ”
该如何解决?