mirror of
https://github.com/astaxie/beego.git
synced 2024-11-21 20:40:54 +00:00
orm.rawPrepare support FlatParams
This commit is contained in:
parent
93eb7c6b83
commit
16d71893cd
@ -32,7 +32,8 @@ func (o *rawPrepare) Exec(args ...interface{}) (sql.Result, error) {
|
||||
if o.closed {
|
||||
return nil, ErrStmtClosed
|
||||
}
|
||||
return o.stmt.Exec(args...)
|
||||
flatParams := getFlatParams(nil, args, o.rs.orm.alias.TZ)
|
||||
return o.stmt.Exec(flatParams...)
|
||||
}
|
||||
|
||||
func (o *rawPrepare) Close() error {
|
||||
|
Loading…
Reference in New Issue
Block a user