본문 바로가기
언어/R

postgres

by newlibra 2022. 12. 3.

install.packages("RPostgreSQL")
library(RPostgreSQL)

 


con1 <- dbConnect(RPostgres::Postgres(), dbname = "postgres", port="5432", user="postgres", password="1")
dbListTables(con1)

'언어 > R' 카테고리의 다른 글

bond  (0) 2023.03.05
script  (0) 2023.02.20
sqlite3  (0) 2023.02.11
sqlite 2  (0) 2022.12.04
sqlite  (0) 2022.11.30