(ctx context.Context, query string, args ...interface{})
| 398 | } |
| 399 | |
| 400 | func (q *qStmt) QueryxContext(ctx context.Context, query string, args ...interface{}) (*Rows, error) { |
| 401 | r, err := q.Stmt.QueryContext(ctx, args...) |
| 402 | if err != nil { |
| 403 | return nil, err |
| 404 | } |
| 405 | return &Rows{Rows: r, unsafe: q.Stmt.unsafe, Mapper: q.Stmt.Mapper}, err |
| 406 | } |
| 407 | |
| 408 | func (q *qStmt) QueryRowxContext(ctx context.Context, query string, args ...interface{}) *Row { |
| 409 | rows, err := q.Stmt.QueryContext(ctx, args...) |
no test coverage detected