I would like to write back a dataframe to the db in plr.
In standard R I could just do:
require("RPostgreSQL")
con <- dbConnect(dbDriver("PostgreSQL"), dbname = , port = , user = )
data(iris)
dbWriteTable(con, 'iris', iris, row.names=FALSE)
In plr however I am already connected to the database. I looked at the plr documentation here: http://www.joeconway.com/plr/doc/plr-US.pdf but couldn't find an example, also found this sqlshorthands.R document but the example there didnt work for me.