作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想从 R 中的数据帧在 MySQL 中插入数据。我设法使用 dbConnect 从 R 连接到 MySQL 没有问题,但是当我尝试使用 dbWriteTable 插入我的数据时,我不断收到错误unable to find an inherited method for function 'dbWriterTable' for signature '"integer", "character", "data.frame"'
.
现在,我已经尝试了这里提到的建议解决方案 How to resolve this error--dbWriteTable()但这个解决方案对我不起作用。我的原始代码是
dbWriteTable(conn, "Date", france$Date)
Date
我在 R 中的数据框被称为
france
并且有一列
Date
包含日期(此列的类型也是日期)。提出解决方案后,我的代码变为
dbWriteTable(conn, "Date", data.frame(dat=france$Date), row.names=FALSE, append=TRUE)
field.types=list("date")
如以下解决方案
RMySQL dbWriteTable with field.types 中所述但我得到了同样的错误。
dbSendQuery
连同
paste()
按照此处的建议手动插入我的数据
How to insert integer values with query in MySQL in R?但我又犯了同样的错误!
最佳答案
我遇到了同样的错误,因为我提供给 dbWriteTable()
的对象不是 data.frame。
要修复它,我只需先将对象转换为 data.frame
dat <- as.data.frame(dat)
dbWriteTable(con, "mydbtable", dat)
关于mysql - 如何修复 dbWriteTable 错误 "unable to find an inherited method for function ' dbWriterTable' 以进行签名...?”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40480273/
我想从 R 中的数据帧在 MySQL 中插入数据。我设法使用 dbConnect 从 R 连接到 MySQL 没有问题,但是当我尝试使用 dbWriteTable 插入我的数据时,我不断收到错误 un
我是一名优秀的程序员,十分优秀!