October 2017
Beginner to intermediate
236 pages
7h 38m
English
Every database software has its own driver that helps it to connect with the database.
Let's take a look at the following steps and see how they work:
databaseDriver <- dbDriver("PostgreSQL")
con2DB <- dbConnect(databaseDriver, dbname = "postgres", host = "localhost", port = 5432, user = "postgres", password = p_word)