0

私の環境は::

Windows 7、

エクリプス・ジュノ、

PostgreSQL 9.2、

PostgreSQL jdbc3 ドライバー (jar ファイル)、およびデータベースのバックアップ ( SampleDb.sql)

My DOUBT 画像ビュー

これを解決する方法はありますか?

同じプロジェクトからデータベースに接続するためのステートメントも必要です。ステートメントのようなもの

4

1 に答える 1

0

少なくとも進行状況データベースへの接続を確立できますか?

// 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()) {
  ...
}
于 2013-07-16T08:34:26.043 に答える