gorm/interfaces.go

64 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-06-02 04:16:07 +03:00
"gorm.io/gorm/clause"
"gorm.io/gorm/schema"
2020-02-02 09:40:44 +03:00
)
// Dialector GORM database dialector
type Dialector interface {
2020-06-01 03:12:44 +03:00
Name() string
2020-02-02 09:40:44 +03:00
Initialize(*DB) error
2020-02-22 12:53:57 +03:00
Migrator(db *DB) Migrator
DataTypeOf(*schema.Field) string
DefaultValueOf(*schema.Field) clause.Expression
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-06-23 04:38:51 +03:00
// Plugin GORM plugin interface
type Plugin interface {
Name() string
Initialize(*DB) error
}
2020-03-09 08:10:48 +03:00
// ConnPool db conns pool interface
type ConnPool interface {
2020-02-02 09:40:44 +03:00
PrepareContext(ctx context.Context, query string) (*sql.Stmt, error)
2020-06-05 05:08:22 +03:00
ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error)
2020-02-02 09:40:44 +03:00
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-06-23 04:38:51 +03:00
// SavePointerDialectorInterface save pointer interface
type SavePointerDialectorInterface interface {
SavePoint(tx *DB, name string) error
RollbackTo(tx *DB, name string) error
}
2020-02-23 18:28:35 +03:00
type TxBeginner interface {
BeginTx(ctx context.Context, opts *sql.TxOptions) (*sql.Tx, error)
}
2020-06-05 05:08:22 +03:00
type ConnPoolBeginner interface {
BeginTx(ctx context.Context, opts *sql.TxOptions) (ConnPool, error)
}
type TxCommitter interface {
2020-02-23 18:28:35 +03:00
Commit() error
Rollback() error
}
2020-08-27 10:03:57 +03:00
// Valuer gorm valuer interface
type Valuer interface {
GormValue(context.Context, *DB) clause.Expr
2020-02-23 16:22:35 +03:00
}
2021-03-19 10:54:32 +03:00
type GetDBConnector interface {
GetDBConn() (*sql.DB, error)
}