Skip to content

Instantly share code, notes, and snippets.

@dhruvr
Created September 21, 2019 21:34
Show Gist options
  • Save dhruvr/951ee385ebac8b333ad08cdea72766da to your computer and use it in GitHub Desktop.
Save dhruvr/951ee385ebac8b333ad08cdea72766da to your computer and use it in GitHub Desktop.
db, err := sql.Open(confs.DBDriverName, connectionString)
if err != nil {
log.Fatalln("Problem while setting up the data base ", wErr)
}
if wErr = db.Ping(); err != nil {
log.Fatalln("Problem while pinging to the data base ", err)
}
defer Close(db)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment