common.go 739 B

1234567891011121314151617181920212223242526272829303132
  1. package dao
  2. import (
  3. _ "github.com/go-sql-driver/mysql"
  4. "github.com/jinzhu/gorm"
  5. "iot_manager_service/config"
  6. "net/url"
  7. "time"
  8. )
  9. var G_db *gorm.DB
  10. type LcModel struct {
  11. CreatedAt time.Time
  12. UpdatedAt time.Time
  13. DeletedAt *time.Time `sql:"index"`
  14. }
  15. func InitDB() {
  16. cfg := config.Instance()
  17. dsn := cfg.Database.User + ":" + cfg.Database.Password + "@tcp(" + cfg.Database.Host + ":" + cfg.Database.Port + ")/" + cfg.Database.Name + "?charset=utf8&parseTime=True" + "&loc=" + url.QueryEscape(cfg.Database.Timezone)
  18. db0, err := gorm.Open("mysql", dsn)
  19. if err != nil {
  20. panic(err)
  21. } else {
  22. G_db = db0
  23. G_db.DB().SetMaxOpenConns(32)
  24. G_db.DB().SetMaxIdleConns(5)
  25. G_db.LogMode(false)
  26. G_db.AutoMigrate(&CameraDevice{})
  27. }
  28. }