私の環境は::
Windows 7、
エクリプス・ジュノ、
PostgreSQL 9.2、
PostgreSQL jdbc3 ドライバー (jar ファイル)、およびデータベースのバックアップ ( SampleDb.sql
)
これを解決する方法はありますか?
同じプロジェクトからデータベースに接続するためのステートメントも必要です。ステートメントのようなもの
私の環境は::
Windows 7、
エクリプス・ジュノ、
PostgreSQL 9.2、
PostgreSQL jdbc3 ドライバー (jar ファイル)、およびデータベースのバックアップ ( SampleDb.sql
)
これを解決する方法はありますか?
同じプロジェクトからデータベースに接続するためのステートメントも必要です。ステートメントのようなもの
少なくとも進行状況データベースへの接続を確立できますか?
// load driver
Class.forName("org.postgresql.Driver");
//stablish connection
String url = "jdbc:postgresql://localhost/test";
Properties props = new Properties();
props.setProperty("user","fred");
props.setProperty("password","secret");
Connection conn = DriverManager.getConnection(url, props);
それが機能する場合は、次のことを行うだけです。
Statement statement = conn.createStatement();
ResultSet result = statement.executeQuery("select * from FOO");
while(result.next()) {
...
}