gorm/interfaces.go

26 lines
698 B
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
"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-02-03 05:40:03 +03:00
BindVar(stmt *Statement, v interface{}) string
2020-02-05 06:14:58 +03:00
QuoteChars() [2]byte
2020-02-02 09:40:44 +03:00
}
// CommonDB common db interface
type CommonDB interface {
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
}