首先要下载微软的ODBC,并配置好环境变量,R要下载RODBC
R:
library(RODBC)
dbhandle <- odbcDriverConnect('driver={SQL Server};server=(local);database=db_Test;trusted_connection=true')
res <- sqlQuery(dbhandle, 'select * from weather')
sqlSave(dbhandle,res,"new_weather",append=FALSE)
odbcClose(dbhandle)
感谢:
PDF-Connect to MySQL or Microsoft SQL Server using R
其他数据库的连接也是大同小异,因为我没有装其他数据库,所以就不一一验证了