如何将R连接到远程服务器并通过它访问Postgresql数据库?[已关闭]

whlutmcx  于 2023-02-18  发布在  PostgreSQL
关注(0)|答案(1)|浏览(125)

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
昨天关门了。
Improve this question
背景:
1.我需要从本地计算机访问Postgresql数据库
1.只能通过位于远程服务器上的一组IP访问数据库
有了上面的信息,我可以使用PGAdmin从我的本地通过输入服务器和数据库凭据来访问数据库。
我浏览了以下链接,但没有任何帮助:请告诉我如何才能访问服务器,并通过它,数据库(所有通过R)。谢谢!

flvlnr44

flvlnr441#

参见库library(RPostgreSQL)及其函数dbConnect

dbConnect(drv = PostgreSQL(), user = "AAA", dbname = "BBB", host = "HHH",  password = "WWW",port = "PPP")

相关问题