PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Conexão Postgres JDBC na Ajuda do Eclipse


Foi assim que fiz uma conexão:(não sei se isso é "melhor prática", mas funciona.)

Importando o driver:
  1. Clique com o botão direito em seu projeto
  2. Escolha a propriedade
  3. Escolha Java build path
  4. Escolha Add external JARS.. e selecione o local para o driver JDBC.

Aqui está o meu código:
try{
    Class.forName("org.postgresql.Driver");
    } catch (ClassNotFoundException cnfe){
      System.out.println("Could not find the JDBC driver!");
      System.exit(1);
    }
Connection conn = null;
try {
    conn = DriverManager.getConnection
                   (String url, String user, String password);
     } catch (SQLException sqle) {
       System.out.println("Could not connect");
       System.exit(1);
     }

O URL pode ser de um dos seguintes formatos:
jdbc:postgresql:database
jdbc:postgresql://host/database
jdbc:postgresql://host:port/database