2013-11-14 13:35:17 +04:00
|
|
|
package dialect
|
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) (str string) {
|
|
|
|
return
|
|
|
|
}
|
2013-11-30 10:52:01 +04:00
|
|
|
|
|
|
|
func (s *sqlite3) Quote(key string) (str string) {
|
|
|
|
return fmt.Sprintf("\"%s\"", key)
|
|
|
|
}
|