R ++ 3.0.3的MySQL包

时间:2014-04-14 04:04:36

标签: mysql r

我希望能够从R连接到MySQL数据库并在R中运行qry。我找到了一个名为RMySQL的软件包,但它不适用于R版本3.0.3。还有其他解决方案吗?

谢谢,

1 个答案:

答案 0 :(得分:1)

可用。其他选项是RODBC

  

连接R和MySQL

请按照这3条命令连接R和MySQL数据库并执行查询。

require(RMySQL)
con <- dbConnect(MySQL(),user='username',password='password',host='host name/server id',dbname='database_name') #connect R with MySQL database
res <- dbSendQuery(con, "Your SQL query") #Run your SQL query in R
sql_data <- fetch(res, n = -1) #Extract all row(you can set number of rows by changing the value of "n")