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 {
|
|
|
|
BeforeCreate(*DB)
|
|
|
|
}
|
|
|
|
|
|
|
|
type AfterCreateInterface interface {
|
|
|
|
AfterCreate(*DB)
|
|
|
|
}
|
|
|
|
|
|
|
|
type BeforeUpdateInterface interface {
|
|
|
|
BeforeUpdate(*DB)
|
|
|
|
}
|
|
|
|
|
|
|
|
type AfterUpdateInterface interface {
|
|
|
|
AfterUpdate(*DB)
|
|
|
|
}
|
|
|
|
|
|
|
|
type BeforeSaveInterface interface {
|
|
|
|
BeforeSave(*DB)
|
|
|
|
}
|
|
|
|
|
|
|
|
type AfterSaveInterface interface {
|
|
|
|
AfterSave(*DB)
|
|
|
|
}
|
|
|
|
|
|
|
|
type BeforeDeleteInterface interface {
|
|
|
|
BeforeDelete(*DB)
|
|
|
|
}
|
|
|
|
|
|
|
|
type AfterDeleteInterface interface {
|
|
|
|
AfterDelete(*DB)
|
|
|
|
}
|
|
|
|
|
|
|
|
type AfterFindInterface interface {
|
|
|
|
AfterFind(*DB)
|
|
|
|
}
|