通用数据库接口 sql.DB

GORM 提供了方法 DB,它从当前的 *gorm.DB 返回一个通用的数据库接口 *sql.DB

// Get generic database object sql.DB to use its functions
sqlDB, err := db.DB()

// Ping
sqlDB.Ping()

// Close
sqlDB.Close()

// Returns database statistics
sqlDB.Stats()

注意 如果底层数据库连接不是 *sql.DB,例如在事务中,它将返回错误

连接池

// Get generic database object sql.DB to use its functions
sqlDB, err := db.DB()

// SetMaxIdleConns sets the maximum number of connections in the idle connection pool.
sqlDB.SetMaxIdleConns(10)

// SetMaxOpenConns sets the maximum number of open connections to the database.
sqlDB.SetMaxOpenConns(100)

// SetConnMaxLifetime sets the maximum amount of time a connection may be reused.
sqlDB.SetConnMaxLifetime(time.Hour)

铂金赞助商

黄金赞助商

铂金赞助商

黄金赞助商