Documentation ¶
Overview ¶
Package mysql is a library wrapped on top of gorm.io/gorm, with added features such as link tracing, paging queries, etc.
Index ¶
- func Count(ctx context.Context, db *gorm.DB, table interface{}, ...) (int64, error)
- func Create(ctx context.Context, db *gorm.DB, table interface{}) error
- func Delete(ctx context.Context, db *gorm.DB, table interface{}, ...) error
- func DeleteByID(ctx context.Context, db *gorm.DB, table interface{}, id interface{}) error
- func Get(ctx context.Context, db *gorm.DB, table interface{}, ...) error
- func GetByID(ctx context.Context, db *gorm.DB, table interface{}, id interface{}) error
- func GetTableName(object interface{}) string
- func Init(dns string, opts ...Option) (*gorm.DB, error)
- func List(ctx context.Context, db *gorm.DB, tables interface{}, page *query.Page, ...) error
- func NewCustomGormLogger(o *options) logger.Interface
- func TableName(table interface{}) string
- func Update(ctx context.Context, db *gorm.DB, table interface{}, column string, ...) error
- func Updates(ctx context.Context, db *gorm.DB, table interface{}, update KV, ...) error
- type KV
- type Model
- type Model2
- type Option
- func WithConnMaxLifetime(t time.Duration) Option
- func WithEnableForeignKey() Option
- func WithEnableTrace() Option
- func WithGormPlugin(plugins ...gorm.Plugin) Option
- func WithLog() Option
- func WithLogRequestIDKey(key string) Option
- func WithLogging(l *zap.Logger, level ...logger.LogLevel) Option
- func WithMaxIdleConns(size int) Option
- func WithMaxOpenConns(size int) Option
- func WithRWSeparation(slavesDsn []string, mastersDsn ...string) Option
- func WithSlowThreshold(d time.Duration) Option
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Count ¶
func Count(ctx context.Context, db *gorm.DB, table interface{}, queryCondition interface{}, args ...interface{}) (int64, error)
Count number of records the param of 'table' must be pointer, eg: &StructName
func Delete ¶
func Delete(ctx context.Context, db *gorm.DB, table interface{}, queryCondition interface{}, args ...interface{}) error
Delete record the param of 'table' must be pointer, eg: &StructName
func DeleteByID ¶
DeleteByID delete record by id the param of 'table' must be pointer, eg: &StructName
func Get ¶
func Get(ctx context.Context, db *gorm.DB, table interface{}, queryCondition interface{}, args ...interface{}) error
Get one record the param of 'table' must be pointer, eg: &StructName
func List ¶
func List(ctx context.Context, db *gorm.DB, tables interface{}, page *query.Page, queryCondition interface{}, args ...interface{}) error
List multiple records, starting from page 0 the param of 'tables' must be a slice, eg: []StructName
func NewCustomGormLogger ¶ added in v1.5.3
NewCustomGormLogger custom gorm logger
Types ¶
type Model ¶
type Model struct { ID uint64 `gorm:"column:id;AUTO_INCREMENT;primary_key" json:"id"` CreatedAt time.Time `gorm:"column:created_at" json:"createdAt"` UpdatedAt time.Time `gorm:"column:updated_at" json:"updatedAt"` DeletedAt gorm.DeletedAt `gorm:"column:deleted_at;index" json:"-"` }
Model embedded structs, add `gorm: "embedded"` when defining table structs
type Model2 ¶ added in v1.4.2
type Model2 struct { ID uint64 `gorm:"column:id;AUTO_INCREMENT;primary_key" json:"id"` CreatedAt time.Time `gorm:"column:created_at" json:"created_at"` UpdatedAt time.Time `gorm:"column:updated_at" json:"updated_at"` DeletedAt gorm.DeletedAt `gorm:"column:deleted_at;index" json:"-"` }
Model2 embedded structs, json tag named is snake case
type Option ¶
type Option func(*options)
Option set the mysql options.
func WithConnMaxLifetime ¶
WithConnMaxLifetime set conn max lifetime
func WithEnableForeignKey ¶
func WithEnableForeignKey() Option
WithEnableForeignKey use foreign keys
func WithGormPlugin ¶ added in v1.5.4
WithGormPlugin setting gorm plugin
func WithLog ¶
func WithLog() Option
WithLog set log sql Deprecated: will be replaced by WithLogging
func WithLogRequestIDKey ¶ added in v1.5.3
WithLogRequestIDKey log request id
func WithLogging ¶ added in v1.5.3
WithLogging set log sql, If l=nil, the gorm log library will be used
func WithRWSeparation ¶ added in v1.5.4
WithRWSeparation setting read-write separation
func WithSlowThreshold ¶
WithSlowThreshold Set sql values greater than the threshold