gorm/dialect.go

37 lines
761 B
Go
Raw Normal View History

package gorm
2013-11-14 13:35:17 +04:00
2014-03-16 05:28:43 +04:00
import (
2014-07-02 13:47:30 +04:00
"fmt"
2014-03-16 05:28:43 +04:00
"reflect"
"time"
)
var timeType = reflect.TypeOf(time.Time{})
2013-11-14 13:35:17 +04:00
type Dialect interface {
2013-11-16 16:47:25 +04:00
BinVar(i int) string
2013-11-14 14:59:11 +04:00
SupportLastInsertId() bool
2014-03-16 05:28:43 +04:00
SqlTag(value reflect.Value, size int) string
PrimaryKeyTag(value reflect.Value, size int) string
2013-11-14 14:59:11 +04:00
ReturningStr(key string) string
Quote(key string) string
HasTable(scope *Scope, tableName string) bool
HasColumn(scope *Scope, tableName string, columnName string) bool
2013-11-14 13:35:17 +04:00
}
func NewDialect(driver string) Dialect {
2013-11-14 13:35:17 +04:00
var d Dialect
switch driver {
case "postgres":
2013-11-14 14:59:11 +04:00
d = &postgres{}
2013-11-14 13:35:17 +04:00
case "mysql":
2013-11-14 14:59:11 +04:00
d = &mysql{}
2013-11-14 13:35:17 +04:00
case "sqlite3":
2013-11-14 14:59:11 +04:00
d = &sqlite3{}
2014-07-02 13:47:30 +04:00
default:
fmt.Printf("`%v` is not officially supported, running under compatibility mode.\n", driver)
d = &commonDialect{}
2013-11-14 13:35:17 +04:00
}
2013-11-14 14:59:11 +04:00
return d
2013-11-14 13:35:17 +04:00
}