gpt4 book ai didi

postgresql - 与 postgreSQL 模式连接

转载 作者:IT王子 更新时间:2023-10-29 01:20:54 30 4
gpt4 key购买 nike

我希望连接并查询 PostgreSQL。但我只想连接到特定的 Schema .

根据文档 (JDBC) 我们可以使用

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

更新 从 9.4 开始,您可以使用新的 currentSchema 参数指定 url,如下所示:

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

但我无法使用 golang SQL 驱动程序这样做;

根据文档,我们还可以使用 SET search_path TO myschema,public;
但我只想在初始化期间声明一次,但我认为每次新连接都需要执行一次。

此外,我正在使用以下代码,请帮助我确定要传递给它的正确参数,以便仅与模式连接

db, err := sql.Open("postgres", `dbname=`+s.settings.Database+
` user=`+s.settings.Username+` password=`+s.settings.Password+
` host=`+s.settings.Url+` sslmode=disable`)

添加 currentSchema=myschemasearchpath=myschema 无效!

有没有一种方法我只能连接到 GO 中的特定数据库模式

最佳答案

您应该将 search_path=myschema 添加到 dataSourceName

附言最好使用 fmt.Sprintf("host=%s port=%d dbname=%s user=%s password='%s' sslmode=disable search_path=%s", ...) ``+``

关于postgresql - 与 postgreSQL 模式连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51459170/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com