mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 09:50:55 +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 {
|
if o.closed {
|
||||||
return nil, ErrStmtClosed
|
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 {
|
func (o *rawPrepare) Close() error {
|
||||||
|
Loading…
Reference in New Issue
Block a user