MustExecContext runs MustExecContext within a transaction. Any placeholder parameters are replaced with supplied args.
(ctx context.Context, query string, args ...interface{})
| 320 | // MustExecContext runs MustExecContext within a transaction. |
| 321 | // Any placeholder parameters are replaced with supplied args. |
| 322 | func (tx *Tx) MustExecContext(ctx context.Context, query string, args ...interface{}) sql.Result { |
| 323 | return MustExecContext(ctx, tx, query, args...) |
| 324 | } |
| 325 | |
| 326 | // QueryxContext within a transaction and context. |
| 327 | // Any placeholder parameters are replaced with supplied args. |
nothing calls this directly
no test coverage detected