2013-10-25 14:04:48 +04:00
|
|
|
package gorm
|
2013-10-26 05:49:40 +04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"reflect"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
func modelValues(m interface{}) (columns []string, values []interface{}) {
|
|
|
|
typ := reflect.TypeOf(m).Elem()
|
|
|
|
|
|
|
|
for i := 0; i < typ.NumField(); i++ {
|
|
|
|
p := typ.Field(i)
|
|
|
|
if !p.Anonymous {
|
2013-10-26 07:48:07 +04:00
|
|
|
columns = append(columns, p.Name)
|
2013-10-26 05:49:40 +04:00
|
|
|
value := reflect.ValueOf(m).Elem().FieldByName(p.Name)
|
|
|
|
values = append(values, value.Interface())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func valuesToBinVar(values []interface{}) string {
|
|
|
|
var sqls []string
|
|
|
|
for index, _ := range values {
|
|
|
|
sqls = append(sqls, fmt.Sprintf("$%d", index+1))
|
|
|
|
}
|
|
|
|
return strings.Join(sqls, ",")
|
|
|
|
}
|
2013-10-26 06:06:57 +04:00
|
|
|
|
|
|
|
func quoteMap(values []string) (results []string) {
|
|
|
|
for _, value := range values {
|
|
|
|
results = append(results, "\""+value+"\"")
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|