You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
737 B
47 lines
737 B
package gorm |
|
|
|
import ( |
|
"context" |
|
|
|
"go-common/app/admin/main/aegis/conf" |
|
"go-common/library/database/orm" |
|
"go-common/library/log" |
|
|
|
"github.com/jinzhu/gorm" |
|
) |
|
|
|
// Dao dao |
|
type Dao struct { |
|
c *conf.Config |
|
orm *gorm.DB |
|
} |
|
|
|
// New init mysql orm |
|
func New(c *conf.Config) (dao *Dao) { |
|
dao = &Dao{ |
|
c: c, |
|
orm: orm.NewMySQL(c.ORM), |
|
} |
|
dao.orm.LogMode(true) |
|
|
|
return |
|
} |
|
|
|
// Close close the resource. |
|
func (d *Dao) Close() { |
|
d.orm.Close() |
|
} |
|
|
|
// BeginTx . |
|
func (d *Dao) BeginTx(c context.Context) (tx *gorm.DB, err error) { |
|
tx = d.orm.Begin() |
|
if err = tx.Error; err != nil { |
|
log.Error("orm begin tx error(%v)", err) |
|
} |
|
return |
|
} |
|
|
|
// Ping dao ping |
|
func (d *Dao) Ping(c context.Context) error { |
|
return d.orm.DB().PingContext(c) |
|
}
|
|
|