最佳答案
你可以看一下包RMySQL.我正在使用它,它提供了一些方便的加载和从MysqL数据库读取数据.这就是说你可以使用的查询是有限的(例如HAVING不可能是IIRC).我不能说它超级快,或者我的数据很大,但它是几个2位MB的文本,没关系.取决于你的期望.不过很方便:
原文链接:/mysql/433394.htmlcon <- dbConnect(MysqL(),user="user",password="pass",dbname="mydb",host="localhost",client.flag=CLIENT_MULTI_STATEMENTS)
dbListTables(con)
yourtable <- dbReadTable(con,"soMetable")
# write it back
dbWriteTable(con,"yourTableinMysqL",yourtable,overwrite=T)
# watch out with the overwrite argument it does what it says :)
dbDisconnect(con)
yourtable将是一个data.frame.有时它让我觉得模式没有像我期望的那样设置,但我有一个自定义功能.只需要改进它然后我会在这里发布.