1

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.

Craig Levin
  • 11
  • 1
  • 1
  • 3

1 Answers1

1

You are most likely missing an import. Try to add/run

install.packages("RSQLServer")

library("RSQLServer")
Fermat's Little Student
  • 5,549
  • 7
  • 49
  • 70