dal/pkg/adapter/types.go

24 lines
582 B
Go
Raw Permalink Normal View History

package adapter
type Query struct {
Db string `json:"db"`
Expression string `json:"expr"`
Data []interface{} `json:"data"`
Transaction bool `json:"transaction"`
Exec bool `json:"exec"`
}
type DialectOpts map[string]string
/*
Dialect interface provides general utilities for normalizing values for particular DB.
*/
type Dialect interface {
New(opts DialectOpts) Dialect
GetTableName() string
GetTableAlias() string
GetFieldName() string
GetColumnName(key string) string
NormalizeValue(interface{}) interface{}
}