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