gpt4 book ai didi

r - 使用 R 连接到 PostgreSQL(在 Windows 中)

转载 作者:行者123 更新时间:2023-11-29 11:32:20 49 4
gpt4 key购买 nike

我有这个 R 代码,我想使用 conf 文件连接到 postgres 数据库:

con <- dbConnect(PostgreSQL(), groups='epl')

postgresql.conf 文件包含:

#------------------------------------------------------------------------------
# CUSTOMIZED OPTIONS
#------------------------------------------------------------------------------

# Add settings for extensions here
[epl]
host='localhost'
port = 5432
dbname='rlearning'
user='user'
password='pass'

当我运行 R 代码时,出现此错误:

Error in postgresqlNewConnection(drv, ...) : 
unused argument(s) (groups = "epl")

最佳答案

如果一切都失败了,您可以尝试阅读文档并按照示例进行操作。对于 help(dbConnect),您会发现

# create an PostgreSQL instance and create one connection.
drv <- dbDriver("PostgreSQL")

# open the connection using user, passsword, etc., as
con <- dbConnect(drv, dbname = "postgres")

这是您添加其他用户、密码、主机、参数的地方。

它还会向您显示没有参数 groups 来解释您遇到的错误。

关于r - 使用 R 连接到 PostgreSQL(在 Windows 中),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15176977/

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