MustExecContext (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.
(ctx context.Context, args ...interface{})
| 376 | // the error output will be blank, as Stmt does not expose its query. |
| 377 | // Any placeholder parameters are replaced with supplied args. |
| 378 | func (s *Stmt) MustExecContext(ctx context.Context, args ...interface{}) sql.Result { |
| 379 | return MustExecContext(ctx, &qStmt{s}, "", args...) |
| 380 | } |
| 381 | |
| 382 | // QueryRowxContext using this statement. |
| 383 | // Any placeholder parameters are replaced with supplied args. |
nothing calls this directly
no test coverage detected