我在连接到dockerized postgres实例时遇到了很多麻烦。我得到的错误如下:
Exception in thread "main" org.postgresql.util.PSQLException: ERROR: relation "prescriptions" does not exist
Position: 29
at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2284)
at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2003)
at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:200)
at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:424)
at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:321)
at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:313)
以下是重新创建问题的步骤。首先,我像这样设置数据库:
docker run -p 7654:5432 --name zoo_postgres -e POSTGRES_PASSWORD="stranger" -e POSTGRES_USER=stranger -d postgres
运行一个设置脚本,如下所示:
create DATABASE stranger;
create SCHEMA stranger;
CREATE TABLE prescriptions (
prescription_id BIGINT NOT NULL,
PRIMARY KEY (prescription_id)
);
CREATE USER stranger_user WITH ENCRYPTED password 'stranger_user';
grant CONNECT on DATABASE stranger to stranger_user;
grant USAGE on SCHEMA stranger to stranger_user;
GRANT SELECT ON ALL TABLES IN SCHEMA stranger TO stranger_user;
GRANT INSERT ON ALL TABLES IN SCHEMA stranger TO stranger_user;
GRANT DELETE ON ALL TABLES IN SCHEMA stranger TO stranger_user;
GRANT UPDATE ON ALL TABLES IN SCHEMA stranger TO stranger_user;
-- I've tried several variations of the line below, without any effect
ALTER USER stranger_user SET SEARCH_PATH to stranger,stranger_user,public;
在Java方面,代码非常简单,如下所示:
public static void main(String[] args) throws Exception {
Class.forName("org.postgresql.Driver");
Connection connection = DriverManager.getConnection("jdbc:postgresql://localhost:7654/stranger","stranger_user", "stranger_user"); // this succeeds (suggesting the connection string is correct)
connection.setCatalog("stranger");
connection.setSchema("stranger");
Statement stmt = connection.createStatement();
stmt.execute("select prescription_id from prescriptions");
// code dies before getting to the close line.
connection.close();
System.out.println("Successfully connected using JDBC directly");
}
设置目录和架构无效,也不会更改搜索路径。一切都是小写的,所以我不认为它与逃避表名有任何关系。我尝试过使用真实用户(并跳过用户帐户),省略了数据库名称和其他一些技巧。我怀疑我连接数据库的方式有问题,但我可以连接到使用psql,如下所示:
% psql -h localhost -p 7654 -d postgres -U stranger_user
从这一点来说,我可以使用普通的sql访问表:
% psql -h localhost -p 7654 -d postgres -U stranger_user
Password for user stranger_user:
psql (9.4.6, server 9.5.2)
WARNING: psql major version 9.4, server major version 9.5.
Some psql features might not work.
Type "help" for help.
postgres=> \d
List of relations
Schema | Name | Type | Owner
----------+---------------+-------+----------
stranger | prescriptions | table | stranger
(1 row)
postgres=> select * from prescriptions;
prescription_id
-----------------
(0 rows)
postgres=> select * from stranger.prescriptions;
prescription_id
-----------------
(0 rows)
我使用的是最新版本的postgres驱动程序:"org.postgresql:postgresql:9.4+"
,并且看不到任何会导致此问题的内容。在这一点上,我没有想法,也无法弄清楚哪些是错的。
答案 0 :(得分:2)
您正在使用psql
连接到端口7654,然后在JDBC URL中连接到端口6543.此外,您使用postgres
连接到psql
数据库,并且JDBC URL中的stranger
数据库。
这些差异可能是你所看到的例外的来源吗?
答案 1 :(得分:1)
如果您使用pgAdmin或psql,并使用用户localhost:6543
和密码stranger
登录服务器stranger_user
,数据库stranger_user
,您会看到什么?
我希望你看到一个空的public
架构。
运行create DATABASE stranger
不会使其成为活动数据库。
因此,运行create SCHEMA stranger
将在postgres
数据库中创建该架构。它也不会使新架构处于活动状态。
因此,运行CREATE TABLE prescriptions
将在public
数据库的postgres
架构中创建该表。
当然,甚至在PostgreSQL数据库实例/集群中都没有在端口6543上提供服务,因为您在端口7654上的不同实例/集群上完成了所有操作。