使用 RMySQL 我想将数据库中的数据加载到 R 中的数据框中。为此,我使用以下代码:
连接数据库:
con <- dbConnect(MySQL(),
user="root", password="password",
dbname="prediction", host="localhost")
主要代码
library(RMySQL)
source("Rconnectdb") #load the database connection
query = "select received,isRefound from message" #specify query
rs=dbGetQuery(con,query) #resultset
dataset <- fetch(rs, n=-1) #fill dataset with all rows of the resultset
dbClearResult(rs) #clear resultset
执行这个我得到以下错误
函数错误(类、fdef、mtable):无法找到函数“fetch”、签名“data.frame”、“numeric”的继承方法
有任何想法吗?