Hi #rstats folks. Is there any sample code on connecting to postgresql via using R package called Rccp in Windows? I would like to speed up some loops that write into Postgresql database.
1
1
1
Replying to @rubenzunguze
Just use package RPostgreSQL (older, solid) or RPostgres (newer, 'tidy', more depends) and connect directly. Either package uses the binary connector to Postgres so you don't have to worry about details. #rstats

Jan 22, 2023 · 8:15 PM UTC

1
1
3
Replying to @eddelbuettel
Thanks a lot. I will Try that approach