2014-07-02 13:47:30 +04:00
|
|
|
package gorm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"reflect"
|
|
|
|
"strings"
|
2015-02-17 17:55:14 +03:00
|
|
|
"time"
|
2014-07-02 13:47:30 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
type commonDialect struct{}
|
|
|
|
|
|
|
|
func (s *commonDialect) BinVar(i int) string {
|
|
|
|
return "?"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *commonDialect) SupportLastInsertId() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2014-09-16 00:03:14 +04:00
|
|
|
func (s *commonDialect) HasTop() bool {
|
2014-09-16 19:32:35 +04:00
|
|
|
return false
|
2014-09-16 00:03:14 +04:00
|
|
|
}
|
|
|
|
|
2015-02-17 03:34:01 +03:00
|
|
|
func (s *commonDialect) SqlTag(value reflect.Value, size int) 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:
|
|
|
|
return "INTEGER"
|
|
|
|
case reflect.Int64, reflect.Uint64:
|
|
|
|
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()))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *commonDialect) PrimaryKeyTag(value reflect.Value, size int) string {
|
2015-02-17 03:34:01 +03:00
|
|
|
suffix := " NOT NULL PRIMARY KEY"
|
2014-07-02 13:47:30 +04:00
|
|
|
switch value.Kind() {
|
|
|
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uintptr:
|
2015-02-17 03:34:01 +03:00
|
|
|
return "INTEGER" + suffix
|
2014-07-02 13:47:30 +04:00
|
|
|
case reflect.Int64, reflect.Uint64:
|
2015-02-17 03:34:01 +03:00
|
|
|
return "BIGINT" + suffix
|
2014-07-02 13:47:30 +04:00
|
|
|
default:
|
|
|
|
panic("Invalid primary key type")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-08 14:03:42 +03:00
|
|
|
func (s *commonDialect) ReturningStr(tableName, key string) string {
|
2014-07-02 13:47:30 +04:00
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2014-07-30 10:18:15 +04:00
|
|
|
func (s *commonDialect) SelectFromDummyTable() string {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2014-07-02 13:47:30 +04:00
|
|
|
func (s *commonDialect) Quote(key string) string {
|
|
|
|
return fmt.Sprintf("`%s`", key)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *commonDialect) databaseName(scope *Scope) string {
|
|
|
|
from := strings.Index(scope.db.parent.source, "/") + 1
|
|
|
|
to := strings.Index(scope.db.parent.source, "?")
|
|
|
|
if to == -1 {
|
|
|
|
to = len(scope.db.parent.source)
|
|
|
|
}
|
|
|
|
return scope.db.parent.source[from:to]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *commonDialect) HasTable(scope *Scope, tableName string) bool {
|
|
|
|
var count int
|
|
|
|
newScope := scope.New(nil)
|
|
|
|
newScope.Raw(fmt.Sprintf("SELECT count(*) FROM INFORMATION_SCHEMA.tables where table_name = %v AND table_schema = %v",
|
|
|
|
newScope.AddToVars(tableName),
|
|
|
|
newScope.AddToVars(s.databaseName(scope))))
|
2015-02-26 07:35:33 +03:00
|
|
|
newScope.SqlDB().QueryRow(newScope.Sql, newScope.SqlVars...).Scan(&count)
|
2014-07-02 13:47:30 +04:00
|
|
|
return count > 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *commonDialect) HasColumn(scope *Scope, tableName string, columnName string) bool {
|
|
|
|
var count int
|
|
|
|
newScope := scope.New(nil)
|
|
|
|
newScope.Raw(fmt.Sprintf("SELECT count(*) FROM information_schema.columns WHERE table_schema = %v AND table_name = %v AND column_name = %v",
|
|
|
|
newScope.AddToVars(s.databaseName(scope)),
|
|
|
|
newScope.AddToVars(tableName),
|
|
|
|
newScope.AddToVars(columnName),
|
|
|
|
))
|
2015-02-26 07:35:33 +03:00
|
|
|
newScope.SqlDB().QueryRow(newScope.Sql, newScope.SqlVars...).Scan(&count)
|
2014-07-02 13:47:30 +04:00
|
|
|
return count > 0
|
|
|
|
}
|
2014-07-29 08:02:03 +04:00
|
|
|
|
|
|
|
func (s *commonDialect) RemoveIndex(scope *Scope, indexName string) {
|
|
|
|
scope.Raw(fmt.Sprintf("DROP INDEX %v ON %v", indexName, scope.QuotedTableName())).Exec()
|
|
|
|
}
|