QueryContext builds and QueryContexts the query with the Runner set by RunWith.
(ctx context.Context)
| 53 | |
| 54 | // QueryContext builds and QueryContexts the query with the Runner set by RunWith. |
| 55 | func (b UpdateBuilder) QueryContext(ctx context.Context) (*sql.Rows, error) { |
| 56 | data := builder.GetStruct(b).(updateData) |
| 57 | return data.QueryContext(ctx) |
| 58 | } |
| 59 | |
| 60 | // QueryRowContext builds and QueryRowContexts the query with the Runner set by RunWith. |
| 61 | func (b UpdateBuilder) QueryRowContext(ctx context.Context) RowScanner { |
nothing calls this directly
no test coverage detected