QueryRowContext builds and QueryRowContexts the query with the Runner set by RunWith.
(ctx context.Context)
| 59 | |
| 60 | // QueryRowContext builds and QueryRowContexts the query with the Runner set by RunWith. |
| 61 | func (b DeleteBuilder) QueryRowContext(ctx context.Context) RowScanner { |
| 62 | data := builder.GetStruct(b).(deleteData) |
| 63 | return data.QueryRowContext(ctx) |
| 64 | } |
| 65 | |
| 66 | // ScanContext is a shortcut for QueryRowContext().Scan. |
| 67 | func (b DeleteBuilder) ScanContext(ctx context.Context, dest ...interface{}) error { |
no test coverage detected