0
The code I made was a basic Microsoft example of how to make the connection. The driver is already installed.
package connection;
import javax.swing.*;
import java.sql.*;
import com.microsoft.sqlserver.jdbc.SQLServerDriver;
public class conexao {
public static void main(String[] args) throws Exception {
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
String connectionUrl = "jdbc:sqlserver://localhost:1433;" + "databaseName=pessoas;user=sa;password=root;";
Connection con = DriverManager.getConnection(connectionUrl);
}
}
The mistake:
Exception in thread "main" com.microsoft.sqlserver.jdbc.SQLServerException: Falha na conexão TCP/IP com o host localhost, porta 1433.
Erro: "Connect timed out. Verifique as propriedades da conexão.
Verifique se uma instância do SQL Server está sendo executada no host e se está aceitando conexões TCP/IP na porta.
Verifique se as conexões TCP na porta não foram bloqueadas por um firewall.".