gpt4 book ai didi

r - postgresqlNewConnection(drv, ...) RS-DBI 驱动程序错误 : (could not connect postgres@local on dbname

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

我是 R 的新手,我正在尝试使用 RStudio 连接到 PostgreSQL。

我已经安装了 RPostgreSQL 并尝试了以下代码:

> library("DBI", lib.loc="~/R/win-library/3.2")
> library("RPostgreSQL", lib.loc="~/R/win-library/3.2")
> con <- dbConnect(dbDriver("PostgreSQL"), dbname="Delta", user="postgres")
Error in postgresqlNewConnection(drv, ...) :
RS-DBI driver: (could not connect postgres@local on dbname "Delta"

由于某种原因,我无法连接到数据库。我试图解决这个问题很长时间了,但不知道如何解决。

最佳答案

我对这个问题的解决方案是使用RPostgres https://github.com/rstats-db/RPostgres .

假设你有一个连接 url,下面的代码将起作用:

library(DBI)
library(RPostgres)

con <- dbConnect(RPostgres::Postgres(),
host = url$host,
port = url$port,
dbname = url$dbname,
user = url$user,
password = url$password
)

关于r - postgresqlNewConnection(drv, ...) RS-DBI 驱动程序错误 : (could not connect postgres@local on dbname,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36026436/

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