gorm/sqlite3.go

74 lines
2.0 KiB
Go
Raw Normal View History

package gorm
2013-11-14 14:59:11 +04:00
import (
"fmt"
2014-03-16 05:28:43 +04:00
"reflect"
2013-11-14 14:59:11 +04:00
)
type sqlite3 struct{}
2013-11-16 16:47:25 +04:00
func (s *sqlite3) BinVar(i int) string {
2013-11-21 10:33:06 +04:00
return "$$" // ?
2013-11-14 14:59:11 +04:00
}
func (s *sqlite3) SupportLastInsertId() bool {
return true
}
2014-03-16 05:28:43 +04:00
func (s *sqlite3) SqlTag(value reflect.Value, size int) string {
switch value.Kind() {
case reflect.Bool:
2013-11-14 14:59:11 +04:00
return "bool"
2014-03-16 05:28:43 +04:00
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uintptr:
2013-11-14 14:59:11 +04:00
return "integer"
2014-03-16 05:28:43 +04:00
case reflect.Int64, reflect.Uint64:
2013-11-14 14:59:11 +04:00
return "bigint"
2014-03-16 05:28:43 +04:00
case reflect.Float32, reflect.Float64:
2013-11-14 14:59:11 +04:00
return "real"
2014-03-16 05:28:43 +04:00
case reflect.String:
2013-11-14 14:59:11 +04:00
if size > 0 && size < 65532 {
return fmt.Sprintf("varchar(%d)", size)
} else {
return "text"
}
2014-03-16 05:28:43 +04:00
case reflect.Struct:
if value.Type() == timeType {
return "datetime"
}
2013-11-14 14:59:11 +04:00
default:
2014-03-16 05:28:43 +04:00
if _, ok := value.Interface().([]byte); ok {
return "blob"
}
2013-11-14 14:59:11 +04:00
}
2014-03-16 05:28:43 +04:00
panic(fmt.Sprintf("invalid sql type %s (%s) for sqlite3", value.Type().Name(), value.Kind().String()))
2013-11-14 14:59:11 +04:00
}
2014-03-16 05:28:43 +04:00
func (s *sqlite3) PrimaryKeyTag(value reflect.Value, size int) string {
switch value.Kind() {
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uintptr, reflect.Int64, reflect.Uint64:
return "INTEGER PRIMARY KEY"
default:
panic("Invalid primary key type")
}
2013-11-14 14:59:11 +04:00
}
func (s *sqlite3) ReturningStr(key string) string {
return ""
2013-11-14 14:59:11 +04:00
}
func (s *sqlite3) Quote(key string) string {
return fmt.Sprintf("\"%s\"", key)
}
func (s *sqlite3) HasTable(scope *Scope, tableName string) bool {
var count int
2014-07-02 07:56:37 +04:00
scope.DB().QueryRow(fmt.Sprintf("SELECT count(*) FROM sqlite_master WHERE type='table' AND name='%v';", tableName)).Scan(&count)
return count > 0
}
func (s *sqlite3) HasColumn(scope *Scope, tableName string, columnName string) bool {
2014-07-02 07:56:37 +04:00
var count int
scope.DB().QueryRow(fmt.Sprintf("SELECT count(*) FROM sqlite_master WHERE tbl_name = '%v' AND (sql LIKE '%%(\"%v\" %%' OR sql LIKE '%%,\"%v\" %%');\n", tableName, columnName, columnName)).Scan(&count)
return count > 0
}