0

我的环境是::

Windows 7的,

日食朱诺,

PostgreSQL 9.2,

PostgreSQL jdbc3 驱动程序(jar 文件),& 备份我的数据库(SampleDb.sql

我的怀疑图像视图

有没有办法解决这个问题?

我还需要语句来连接来自同一个项目的数据库..类似于语句

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 回答