Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
config.go 483 Bytes
Copy Edit Raw Blame History
fifsky authored 2018-08-13 19:16 . add max_lifetime config item
package gosql
//Config is database connection configuration
type Config struct {
Enable bool `toml:"enable" json:"enable"`
Driver string `toml:"driver" json:"driver"`
Dsn string `toml:"dsn" json:"dsn"`
MaxOpenConns int `toml:"max_open_conns" json:"max_open_conns"`
MaxIdleConns int `toml:"max_idle_conns" json:"max_idle_conns"`
MaxLifetime int `toml:"max_lefttime" json:"max_lefttime"`
ShowSql bool `toml:"show_sql" json:"show_sql"`
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化