通过R更新Postgresql数据库中的表 [英] update table in postgresql database through r

查看:92
本文介绍了通过R更新Postgresql数据库中的表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何通过R使用新数据更新Postgresql数据库中的数据?

How do I update data in a postgresql db through R with new data?

我已经尝试

dbGetQuery(con,"UPDATE table SET column1=:1,column2=:2, column3=:3 
              where id=:4", data=Rdata[,c("column1", "column3", "column3","id")])

我也尝试用$代替冒号,但这也不起作用。我不断得到:

I also tried with the colons replaced with $ but that didn't work either. I keep getting:

Error in postgresqlExecStatement(conn, statement, ...) : 
unused argument(s)


推荐答案

我用以下方法弄清楚了:

I figured it out using:

update <- function(i) {
drv <- dbDriver("PostgreSQL")
con <- dbConnect(drv, dbname="db_name", host="localhost", port="5432", user="chris", password="password")
txt <- paste("UPDATE data SET column_one=",data$column_one[i],",column_two=",data$column_two[i]," where id=",data$id[i])
dbGetQuery(con, txt)
dbDisconnect(con)
}


registerDoMC()

foreach(i = 1:length(data$column_one), .inorder=FALSE,.packages="RPostgreSQL")%dopar%{
update(i)
}

这篇关于通过R更新Postgresql数据库中的表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆