QueryRowxContext using this statement. Any placeholder parameters are replaced with supplied args.
(ctx context.Context, args ...interface{})
| 382 | // QueryRowxContext using this statement. |
| 383 | // Any placeholder parameters are replaced with supplied args. |
| 384 | func (s *Stmt) QueryRowxContext(ctx context.Context, args ...interface{}) *Row { |
| 385 | qs := &qStmt{s} |
| 386 | return qs.QueryRowxContext(ctx, "", args...) |
| 387 | } |
| 388 | |
| 389 | // QueryxContext using this statement. |
| 390 | // Any placeholder parameters are replaced with supplied args. |
nothing calls this directly
no test coverage detected