4

我有这个 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")
4

1 回答 1

8

如果一切都失败了,您可以尝试阅读文档并按照示例进行操作。对于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可以解释您得到的错误。

于 2013-03-02T17:01:20.207 回答