gorm/common_dialect.go

104 lines
2.8 KiB
Go
Raw Normal View History

2014-07-02 13:47:30 +04:00
package gorm
import (
"fmt"
"reflect"
2015-02-17 17:55:14 +03:00
"time"
2014-07-02 13:47:30 +04:00
)
type commonDialect struct{}
2015-03-17 05:40:42 +03:00
func (commonDialect) BinVar(i int) string {
return "$$" // ?
2014-07-02 13:47:30 +04:00
}
2015-03-17 05:40:42 +03:00
func (commonDialect) SupportLastInsertId() bool {
2014-07-02 13:47:30 +04:00
return true
}
2015-03-17 05:40:42 +03:00
func (commonDialect) HasTop() bool {
return false
}
2015-03-17 05:40:42 +03:00
func (commonDialect) SqlTag(value reflect.Value, size int, autoIncrease bool) string {
2014-07-02 13:47:30 +04:00
switch value.Kind() {
case reflect.Bool:
return "BOOLEAN"
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uintptr:
2015-03-11 12:05:58 +03:00
if autoIncrease {
return "INTEGER AUTO_INCREMENT"
}
2014-07-02 13:47:30 +04:00
return "INTEGER"
case reflect.Int64, reflect.Uint64:
2015-03-11 12:05:58 +03:00
if autoIncrease {
return "BIGINT AUTO_INCREMENT"
}
2014-07-02 13:47:30 +04:00
return "BIGINT"
case reflect.Float32, reflect.Float64:
return "FLOAT"
case reflect.String:
if size > 0 && size < 65532 {
return fmt.Sprintf("VARCHAR(%d)", size)
}
2015-02-17 03:34:01 +03:00
return "VARCHAR(65532)"
2014-07-02 13:47:30 +04:00
case reflect.Struct:
2015-02-17 17:55:14 +03:00
if _, ok := value.Interface().(time.Time); ok {
2014-07-02 13:47:30 +04:00
return "TIMESTAMP"
}
default:
if _, ok := value.Interface().([]byte); ok {
if size > 0 && size < 65532 {
return fmt.Sprintf("BINARY(%d)", size)
}
2015-02-17 03:34:01 +03:00
return "BINARY(65532)"
2014-07-02 13:47:30 +04:00
}
}
panic(fmt.Sprintf("invalid sql type %s (%s) for commonDialect", value.Type().Name(), value.Kind().String()))
}
2015-03-17 05:40:42 +03:00
func (commonDialect) ReturningStr(tableName, key string) string {
2014-07-02 13:47:30 +04:00
return ""
}
2015-03-17 05:40:42 +03:00
func (commonDialect) SelectFromDummyTable() string {
return ""
}
2015-03-17 05:40:42 +03:00
func (commonDialect) Quote(key string) string {
return fmt.Sprintf(`"%s"`, key)
2014-07-02 13:47:30 +04:00
}
2015-03-17 05:40:42 +03:00
func (c commonDialect) HasTable(scope *Scope, tableName string) bool {
var (
count int
databaseName string
)
c.CurrentDatabase(scope, &databaseName)
scope.NewDB().Raw("SELECT count(*) FROM INFORMATION_SCHEMA.TABLES WHERE table_name = ? AND table_schema = ?", tableName, databaseName).Row().Scan(&count)
2014-07-02 13:47:30 +04:00
return count > 0
}
2015-03-17 05:40:42 +03:00
func (c commonDialect) HasColumn(scope *Scope, tableName string, columnName string) bool {
var (
count int
databaseName string
)
c.CurrentDatabase(scope, &databaseName)
scope.NewDB().Raw("SELECT count(*) FROM INFORMATION_SCHEMA.COLUMNS WHERE table_schema = ? AND table_name = ? AND column_name = ?", databaseName, tableName, columnName).Row().Scan(&count)
return count > 0
}
2015-03-17 05:40:42 +03:00
func (commonDialect) HasIndex(scope *Scope, tableName string, indexName string) bool {
var count int
scope.NewDB().Raw("SELECT count(*) FROM INFORMATION_SCHEMA.STATISTICS where table_name = ? AND index_name = ?", tableName, indexName).Row().Scan(&count)
2014-07-02 13:47:30 +04:00
return count > 0
}
2015-03-17 05:40:42 +03:00
func (commonDialect) RemoveIndex(scope *Scope, indexName string) {
2015-02-28 12:01:27 +03:00
scope.NewDB().Exec(fmt.Sprintf("DROP INDEX %v ON %v", indexName, scope.QuotedTableName()))
}
func (commonDialect) CurrentDatabase(scope *Scope, name *string) {
scope.Err(scope.NewDB().Raw("SELECT DATABASE()").Row().Scan(name))
}