gpt4 book ai didi

r - 使用 R 在 postgres 中设置模式名称

转载 作者:行者123 更新时间:2023-11-29 11:28:23 25 4
gpt4 key购买 nike

我正在使用 R 连接到 PostgreSQL 数据库。使用以下函数完成连接:

dbConnect(m, dbname=dbname, host=host, port=port, user=user, password=password)

m 是驱动程序 (postgres)。

但它不允许我设置我的表所在的特定模式名称。我如何连接到特定模式,以便每次都不必在表名前添加模式名称前缀?

R 中是否有针对 set search_path = 'myschema' 的等效语句?

最佳答案

您可以使用:

dbConnect(
m,
dbname=dbname,
host=host,
port=port,
user=user,
password=password,
options="-c search_path=myschema"
)

它适用于 RPostgreSQL还有RPostgres .

关于r - 使用 R 在 postgres 中设置模式名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42139964/

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