これが私が接続を確立した方法です:(これが「ベストプラクティス」であるかどうかはわかりませんが、機能します。)
ドライバーのインポート:
- プロジェクトを右クリック
- プロパティを選択
Java build path
を選択します-
Add external JARS..
を選択します JDBCドライバーの場所を選択します。
これが私のコードです:
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);
}
URLは、次のいずれかの形式にすることができます。
jdbc:postgresql:database
jdbc:postgresql://host/database
jdbc:postgresql://host:port/database