QueryxContext using this statement. Any placeholder parameters are replaced with supplied args.
(ctx context.Context, args ...interface{})
| 389 | // QueryxContext using this statement. |
| 390 | // Any placeholder parameters are replaced with supplied args. |
| 391 | func (s *Stmt) QueryxContext(ctx context.Context, args ...interface{}) (*Rows, error) { |
| 392 | qs := &qStmt{s} |
| 393 | return qs.QueryxContext(ctx, "", args...) |
| 394 | } |
| 395 | |
| 396 | func (q *qStmt) QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error) { |
| 397 | return q.Stmt.QueryContext(ctx, args...) |
nothing calls this directly
no test coverage detected