Olá! Boa noite. Andei programando esse dias, e queria entender o motivo de retornarem o método como Connection.
public Connection pegarConexao() {
try {
return DriverManager.getConnection(
"jdbc:postgresql://localhost:5432/sistemaDeVendasDB",
"postgres",
"12344321"
);
} catch (Exception e) {
JOptionPane.showMessageDialog(null, "Erro: " + e);
}
return null;
}