forked from mirror/gorm
Fix binvar for mysql
This commit is contained in:
parent
6404f803e8
commit
ba6403f904
|
@ -1,7 +1,7 @@
|
|||
package dialect
|
||||
|
||||
type Dialect interface {
|
||||
BinVar() string
|
||||
BinVar(i int) string
|
||||
SupportLastInsertId() bool
|
||||
SqlTag(column interface{}, size int) string
|
||||
PrimaryKeyTag(column interface{}, size int) string
|
||||
|
|
|
@ -8,7 +8,7 @@ import (
|
|||
|
||||
type mysql struct{}
|
||||
|
||||
func (s *mysql) BinVar() string {
|
||||
func (s *mysql) BinVar(i int) string {
|
||||
return "?"
|
||||
}
|
||||
|
||||
|
|
|
@ -9,8 +9,8 @@ import (
|
|||
type postgres struct {
|
||||
}
|
||||
|
||||
func (s *postgres) BinVar() string {
|
||||
return "$%v"
|
||||
func (s *postgres) BinVar(i int) string {
|
||||
return fmt.Sprintf("$%v", i)
|
||||
}
|
||||
|
||||
func (s *postgres) SupportLastInsertId() bool {
|
||||
|
|
|
@ -8,7 +8,7 @@ import (
|
|||
|
||||
type sqlite3 struct{}
|
||||
|
||||
func (s *sqlite3) BinVar() string {
|
||||
func (s *sqlite3) BinVar(i int) string {
|
||||
return "?"
|
||||
}
|
||||
|
||||
|
|
2
do.go
2
do.go
|
@ -58,7 +58,7 @@ func (s *Do) setModel(value interface{}) *Do {
|
|||
|
||||
func (s *Do) addToVars(value interface{}) string {
|
||||
s.sqlVars = append(s.sqlVars, value)
|
||||
return fmt.Sprintf(s.dialect().BinVar(), len(s.sqlVars))
|
||||
return s.dialect().BinVar(len(s.sqlVars))
|
||||
}
|
||||
|
||||
func (s *Do) trace(t time.Time) {
|
||||
|
|
|
@ -96,8 +96,7 @@ func init() {
|
|||
|
||||
db.SetPool(10)
|
||||
|
||||
err = db.DropTable(&User{}).Error
|
||||
if err != nil {
|
||||
if err := db.DropTable(&User{}).Error; err != nil {
|
||||
fmt.Printf("Got error when try to delete table users, %+v\n", err)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue