MustExec (panic) using this statement. Note that the query portion of the error output will be blank, as Stmt does not expose its query. Any placeholder parameters are replaced with supplied args.
(args ...interface{})
| 530 | // output will be blank, as Stmt does not expose its query. |
| 531 | // Any placeholder parameters are replaced with supplied args. |
| 532 | func (s *Stmt) MustExec(args ...interface{}) sql.Result { |
| 533 | return MustExec(&qStmt{s}, "", args...) |
| 534 | } |
| 535 | |
| 536 | // QueryRowx using this statement. |
| 537 | // Any placeholder parameters are replaced with supplied args. |
nothing calls this directly
no test coverage detected