2020-02-02 09:40:44 +03:00
|
|
|
package gorm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Dialector GORM database dialector
|
|
|
|
type Dialector interface {
|
|
|
|
Initialize(*DB) error
|
|
|
|
Migrator() Migrator
|
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
|
|
|
|
}
|