PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Connessione JDBC Postgres nella Guida di Eclipse

Ecco come ho stabilito una connessione:(non so se questa sia "best practice", ma funziona.)

Importazione del driver:

  1. Fai clic con il pulsante destro del mouse sul tuo progetto
  2. Scegli proprietà
  3. Scegli Java build path
  4. Scegli Add external JARS.. e seleziona la posizione nel driver JDBC.

Ecco il mio codice:

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);
     }

L'URL può essere di uno dei seguenti formati:

jdbc:postgresql:database
jdbc:postgresql://host/database
jdbc:postgresql://host:port/database