(ctx context.Context, query string, args ...interface{})
| 25 | // QueryerContext is an interface used by GetContext and SelectContext |
| 26 | type QueryerContext interface { |
| 27 | QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error) |
| 28 | QueryxContext(ctx context.Context, query string, args ...interface{}) (*Rows, error) |
| 29 | QueryRowxContext(ctx context.Context, query string, args ...interface{}) *Row |
| 30 | } |
no outgoing calls