dbutil

package
v0.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 27, 2021 License: MIT Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Connect

func Connect(option *Option) (*gorm.DB, error)

Connect 获取db

func ConnectWith

func ConnectWith(dialect gorm.Dialector, option *Option) (*gorm.DB, error)

ConnectWith 通过方言获取db

func Transaction

func Transaction(db *gorm.DB, tasks ...TransactionTask) (rerr error)

Transaction 事务

Types

type ConnectConfig

type ConnectConfig struct {
	Dsn         string // 连接
	Driver      string // 数据库类型
	MaxIdle     int    // 最大空闲连接数
	MaxOpen     int    // 最大连接数
	LogMode     bool   // 是否打印SQL
	MaxLifeTime int    // 连接存活时间
}

ConnectConfig 数据库链接配置

type Option

type Option struct {
	Name   string         // 连接别名
	Logger log.Logger     // 日志
	Config *ConnectConfig // 连接配置
}

Option 连接操作配置

type TransactionTask

type TransactionTask func(db *gorm.DB) error

TransactionTask 事务处理函数

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL