This commit is contained in:
snoop 2016-11-09 15:58:08 +09:00
parent e763dee703
commit 5ef368402a

View File

@ -118,18 +118,11 @@ func createCallback(scope *Scope) {
} }
} else { } else {
if scope.Dialect().GetName() == "h2" {
_, err := scope.SQLDB().Exec(scope.SQL, scope.SQLVars...)
if scope.Err(err) == nil {
primaryField.IsBlank = false
scope.db.RowsAffected = 1
}
} else {
if err := scope.SQLDB().QueryRow(scope.SQL, scope.SQLVars...).Scan(primaryField.Field.Addr().Interface()); scope.Err(err) == nil { if err := scope.SQLDB().QueryRow(scope.SQL, scope.SQLVars...).Scan(primaryField.Field.Addr().Interface()); scope.Err(err) == nil {
primaryField.IsBlank = false primaryField.IsBlank = false
scope.db.RowsAffected = 1 scope.db.RowsAffected = 1
} }
}
} }
} }