I'm working through the following post. When I run the code below I get the following error.
conn = dbConnect('SqlServer', url=url)
Error: could not find function "dbConnect"
Any help would be appreciated. I'm still pretty new to R.
I'm working through the following post. When I run the code below I get the following error.
conn = dbConnect('SqlServer', url=url)
Error: could not find function "dbConnect"
Any help would be appreciated. I'm still pretty new to R.
You are most likely missing an import. Try to add/run
install.packages("RSQLServer")
library("RSQLServer")