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