i try to read access .accdb file using R with package RODBC.
library(RODBC)
db<-file.path("D:/file.accdb")
channel<-odbcConnectAccess2007(db)
I got an error message :
Warning messages:
1: In odbcDriverConnect(con, ...) :
[RODBC] ERROR: state IM002, code 0, message [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
2: In odbcDriverConnect(con, ...) : ODBC connection failed
What is my problem? Thank you