I can not connect to MSSQL using DBI package. I am trying the way shown in package itself
m <- dbDriver("RODBC") # error
Error: could not find function "RODBC"
# open the connection using user, passsword, etc., as
# specified in the file \file{\$HOME/.my.cnf}
con <- dbConnect(m, dsn="data.source", uid="user", pwd="password"))
Any help appreciated. Thanks
odbc
compared toRODBC
is the improved insert performance using e. g.dbWriteTable
, see Feature request: Support for ODBC bulk insert and update operations – Market