gorm/interfaces.go

73 lines
1.5 KiB
Go
Raw Normal View History

2020-02-02 09:40:44 +03:00
package gorm
import (
"context"
"database/sql"
2020-02-22 12:53:57 +03:00
2020-03-09 12:07:00 +03:00
"github.com/jinzhu/gorm/clause"
2020-02-22 12:53:57 +03:00
"github.com/jinzhu/gorm/schema"
2020-02-02 09:40:44 +03:00
)
// Dialector GORM database dialector
type Dialector interface {
Initialize(*DB) error
2020-02-22 12:53:57 +03:00
Migrator(db *DB) Migrator
DataTypeOf(*schema.Field) string
2020-03-09 12:59:54 +03:00
BindVarTo(writer clause.Writer, stmt *Statement, v interface{})
2020-03-09 12:07:00 +03:00
QuoteTo(clause.Writer, string)
2020-02-23 07:39:26 +03:00
Explain(sql string, vars ...interface{}) string
2020-02-02 09:40:44 +03:00
}
2020-03-09 08:10:48 +03:00
// ConnPool db conns pool interface
type ConnPool interface {
2020-02-02 09:40:44 +03:00
ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error)
PrepareContext(ctx context.Context, query string) (*sql.Stmt, error)
QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error)
QueryRowContext(ctx context.Context, query string, args ...interface{}) *sql.Row
}
2020-02-23 16:22:35 +03:00
2020-02-23 18:28:35 +03:00
type TxBeginner interface {
BeginTx(ctx context.Context, opts *sql.TxOptions) (*sql.Tx, error)
}
type TxCommiter interface {
Commit() error
Rollback() error
}
2020-02-23 16:22:35 +03:00
type BeforeCreateInterface interface {
2020-05-31 18:55:56 +03:00
BeforeCreate(*DB) error
2020-02-23 16:22:35 +03:00
}
type AfterCreateInterface interface {
2020-05-31 18:55:56 +03:00
AfterCreate(*DB) error
2020-02-23 16:22:35 +03:00
}
type BeforeUpdateInterface interface {
2020-05-31 18:55:56 +03:00
BeforeUpdate(*DB) error
2020-02-23 16:22:35 +03:00
}
type AfterUpdateInterface interface {
2020-05-31 18:55:56 +03:00
AfterUpdate(*DB) error
2020-02-23 16:22:35 +03:00
}
type BeforeSaveInterface interface {
2020-05-31 18:55:56 +03:00
BeforeSave(*DB) error
2020-02-23 16:22:35 +03:00
}
type AfterSaveInterface interface {
2020-05-31 18:55:56 +03:00
AfterSave(*DB) error
2020-02-23 16:22:35 +03:00
}
type BeforeDeleteInterface interface {
2020-05-31 18:55:56 +03:00
BeforeDelete(*DB) error
2020-02-23 16:22:35 +03:00
}
type AfterDeleteInterface interface {
2020-05-31 18:55:56 +03:00
AfterDelete(*DB) error
2020-02-23 16:22:35 +03:00
}
type AfterFindInterface interface {
2020-05-31 18:55:56 +03:00
AfterFind(*DB) error
2020-02-23 16:22:35 +03:00
}