其他分享
首页 > 其他分享> > 使用JDBC连接到postgres时是否可以指定模式?

使用JDBC连接到postgres时是否可以指定模式?

作者:互联网

可能吗?我可以在连接URL上指定它吗?怎么做?

解决方法:

我知道这已经得到了回答,但是我遇到了同样的问题,试图指定用于liquibase命令行的模式.

更新
从JDBC v9.4开始,您可以使用新的currentSchema参数指定URL,如下所示:

jdbc:postgresql://localhost:5432/mydatabase?currentSchema=myschema

出现基于早期补丁:

http://web.archive.org/web/20141025044151/http://postgresql.1045698.n5.nabble.com/Patch-to-allow-setting-schema-search-path-in-the-connectionURL-td2174512.html

哪个提议网址是这样的:

jdbc:postgresql://localhost:5432/mydatabase?searchpath=myschema

标签:java,postgresql,database,jdbc,database-schema
来源: https://codeday.me/bug/20190915/1805927.html