You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Option 1: connecting to db specified in database.ymlpop.LoadConfigFile()
db, err:=pop.Connect("development")
// Option 2: connecting to db specifying all params cd:= pop.ConnectionDetails{
Dialect: "postgres",
Host: "localhost"
}
db, err=pop.NewConnection(&cd)
db.Open()
The text was updated successfully, but these errors were encountered:
As follows I guess:
The text was updated successfully, but these errors were encountered: