(ctx context.Context, query string, args ...interface{})
| 406 | } |
| 407 | |
| 408 | func (q *qStmt) QueryRowxContext(ctx context.Context, query string, args ...interface{}) *Row { |
| 409 | rows, err := q.Stmt.QueryContext(ctx, args...) |
| 410 | return &Row{rows: rows, err: err, unsafe: q.Stmt.unsafe, Mapper: q.Stmt.Mapper} |
| 411 | } |
| 412 | |
| 413 | func (q *qStmt) ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error) { |
| 414 | return q.Stmt.ExecContext(ctx, args...) |
no test coverage detected