forked from mirror/gorm
Allow open to take transaction.
Need to skip the ping, otherwise results in a nil dereference.
This commit is contained in:
parent
45ccb13437
commit
5ed4c3f290
12
main.go
12
main.go
|
@ -71,11 +71,13 @@ func Open(dialect string, args ...interface{}) (db *DB, err error) {
|
||||||
dialect: newDialect(dialect, dbSQL),
|
dialect: newDialect(dialect, dbSQL),
|
||||||
}
|
}
|
||||||
db.parent = db
|
db.parent = db
|
||||||
|
if err != nil {
|
||||||
if err == nil {
|
return
|
||||||
// Send a ping to make sure the database connection is alive.
|
}
|
||||||
if err = db.DB().Ping(); err != nil {
|
// Send a ping to make sure the database connection is alive.
|
||||||
db.DB().Close()
|
if d, ok := dbSQL.(*sql.DB); ok {
|
||||||
|
if err = d.Ping(); err != nil {
|
||||||
|
d.Close()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue