Refactor reuse existing database connection

This commit is contained in:
Jinzhu 2014-11-25 15:20:21 +08:00
parent 1d6b59f223
commit a4e0ef6509
2 changed files with 2 additions and 7 deletions

View File

@ -56,11 +56,7 @@ func Open(dialect string, args ...interface{}) (DB, error) {
}
dbSql, err = sql.Open(driver, source)
case sqlCommon:
if reflect.TypeOf(value).Kind() == reflect.Ptr {
source = reflect.ValueOf(value).Elem().FieldByName("dsn").String()
} else {
source = reflect.ValueOf(value).FieldByName("dsn").String()
}
source = reflect.Indirect(reflect.ValueOf(value)).FieldByName("dsn").String()
dbSql = value
}

View File

@ -8,8 +8,8 @@ import (
_ "github.com/denisenkom/go-mssqldb"
testdb "github.com/erikstmartin/go-testdb"
"github.com/jinzhu/gorm"
_ "github.com/go-sql-driver/mysql"
"github.com/jinzhu/gorm"
"github.com/jinzhu/now"
_ "github.com/lib/pq"
_ "github.com/mattn/go-sqlite3"
@ -567,7 +567,6 @@ func TestOpenExistingDB(t *testing.T) {
if db.Where("name = ?", "jnfeinstein").First(&user).Error == gorm.RecordNotFound {
t.Errorf("Should have found existing record")
}
}
func BenchmarkGorm(b *testing.B) {