QueryerContext is the interface that wraps the QueryContext method. QueryContext executes the given query as implemented by database/sql.QueryContext.
| 22 | // |
| 23 | // QueryContext executes the given query as implemented by database/sql.QueryContext. |
| 24 | type QueryerContext interface { |
| 25 | QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error) |
| 26 | } |
| 27 | |
| 28 | // QueryRowerContext is the interface that wraps the QueryRowContext method. |
| 29 | // |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…