gorm_mysql.go 289 B

12345678910111213
  1. package config
  2. type Mysql struct {
  3. GeneralDB `yaml:",inline" mapstructure:",squash"`
  4. }
  5. func (m *Mysql) Dsn() string {
  6. return m.Username + ":" + m.Password + "@tcp(" + m.Path + ":" + m.Port + ")/" + m.Dbname + "?" + m.Config
  7. }
  8. func (m *Mysql) GetLogMode() string {
  9. return m.LogMode
  10. }