gorm/field.go

38 lines
724 B
Go
Raw Normal View History

2013-11-14 17:26:02 +04:00
package gorm
import (
"database/sql"
2013-11-15 07:36:27 +04:00
"reflect"
"time"
2013-11-14 17:26:02 +04:00
)
2014-07-30 07:32:18 +04:00
type joinTable struct {
joinTable string
foreignKey string
associationForeignKey string
}
2013-11-14 17:26:02 +04:00
type Field struct {
2014-01-27 04:26:59 +04:00
Name string
DBName string
Value interface{}
IsBlank bool
IsIgnored bool
2014-01-29 06:35:28 +04:00
Tag reflect.StructTag
2014-01-27 04:26:59 +04:00
SqlTag string
BeforeAssociation bool
AfterAssociation bool
2014-01-28 12:06:22 +04:00
isPrimaryKey bool
2014-07-30 07:32:18 +04:00
JoinTable *joinTable
2013-11-14 17:26:02 +04:00
}
2014-01-26 15:34:06 +04:00
func (f *Field) IsScanner() bool {
2014-07-25 12:51:54 +04:00
_, isScanner := reflect.New(reflect.ValueOf(f.Value).Type()).Interface().(sql.Scanner)
return isScanner
2014-01-26 15:34:06 +04:00
}
func (f *Field) IsTime() bool {
2014-07-25 12:51:54 +04:00
_, isTime := f.Value.(time.Time)
return isTime
2014-01-26 15:34:06 +04:00
}