dao

package
v0.0.0-...-9ed4ca6 Latest Latest
Warning

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

Go to latest
Published: Aug 18, 2023 License: GPL-3.0 Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	Q     = new(Query)
	Users *users
)

Functions

func InitDBConnect

func InitDBConnect(option DBOptions) (*gorm.DB, error)

func SetDefault

func SetDefault(db *gorm.DB, opts ...gen.DOOption)

Types

type DBOptions

type DBOptions struct {
	User     string
	Password string
	Addr     string
	Name     string
}

type Query

type Query struct {
	Users users
	// contains filtered or unexported fields
}

func Use

func Use(db *gorm.DB, opts ...gen.DOOption) *Query

func (*Query) Available

func (q *Query) Available() bool

func (*Query) Begin

func (q *Query) Begin(opts ...*sql.TxOptions) *QueryTx

func (*Query) ReadDB

func (q *Query) ReadDB() *Query

func (*Query) ReplaceDB

func (q *Query) ReplaceDB(db *gorm.DB) *Query

func (*Query) Transaction

func (q *Query) Transaction(fc func(tx *Query) error, opts ...*sql.TxOptions) error

func (*Query) WithContext

func (q *Query) WithContext(ctx context.Context) *queryCtx

func (*Query) WriteDB

func (q *Query) WriteDB() *Query

type QueryTx

type QueryTx struct {
	*Query
	Error error
}

func (*QueryTx) Commit

func (q *QueryTx) Commit() error

func (*QueryTx) Rollback

func (q *QueryTx) Rollback() error

func (*QueryTx) RollbackTo

func (q *QueryTx) RollbackTo(name string) error

func (*QueryTx) SavePoint

func (q *QueryTx) SavePoint(name string) error

type UsersInterface

type UsersInterface interface {
	// sql(select * from @@table where userid=@userid limit 1)
	FindOneUserByID(userid string) (gen.T, error)
	// sql(select * from @@table where email=@email limit 1)
	FindOneUserByEmail(email string) (gen.T, error)
}

Jump to

Keyboard shortcuts

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