type github.com/jackc/pgx/v5.Rows

29 uses

	github.com/jackc/pgx/v5 (current package)
		batch.go#L22: func (qq *QueuedQuery) Query(fn func(rows Rows) error) {
		batch.go#L95: 	Query() (Rows, error)
		batch.go#L173: func (br *batchResults) Query() (Rows, error) {
		batch.go#L334: func (br *pipelineBatchResults) Query() (Rows, error) {
		batch.go#L468: func (br *emptyBatchResults) Query() (Rows, error) {
		conn.go#L751: func (c *Conn) Query(ctx context.Context, sql string, args ...any) (Rows, error) {
		rows.go#L27: type Rows interface {
		rows.go#L89: 	ScanRow(rows Rows) error
		rows.go#L391: func RowsFromResultReader(typeMap *pgtype.Map, resultReader *pgconn.ResultReader) Rows {
		rows.go#L401: func ForEachRow(rows Rows, scans []any, fn func() error) (pgconn.CommandTag, error) {
		rows.go#L437: func AppendRows[T any, S ~[]T](slice S, rows Rows, fn RowToFunc[T]) (S, error) {
		rows.go#L458: func CollectRows[T any](rows Rows, fn RowToFunc[T]) ([]T, error) {
		rows.go#L466: func CollectOneRow[T any](rows Rows, fn RowToFunc[T]) (T, error) {
		rows.go#L495: func CollectExactlyOneRow[T any](rows Rows, fn RowToFunc[T]) (T, error) {
		rows.go#L548: func (rs *mapRowScanner) ScanRow(rows Rows) error {
		tx.go#L146: 	Query(ctx context.Context, sql string, args ...any) (Rows, error)
		tx.go#L244: func (tx *dbTx) Query(ctx context.Context, sql string, args ...any) (Rows, error) {
		tx.go#L346: func (sp *dbSimulatedNestedTx) Query(ctx context.Context, sql string, args ...any) (Rows, error) {

	github.com/jackc/pgx/v5/pgxpool
		batch_results.go#L16: func (br errBatchResults) Query() (pgx.Rows, error) {
		batch_results.go#L37: func (br *poolBatchResults) Query() (pgx.Rows, error) {
		conn.go#L90: func (c *Conn) Query(ctx context.Context, sql string, args ...any) (pgx.Rows, error) {
		conn.go#L132: func (c *Conn) getPoolRows(r pgx.Rows) *poolRows {
		pool.go#L63: func (cr *connResource) getPoolRows(c *Conn, r pgx.Rows) *poolRows {
		pool.go#L739: func (p *Pool) Query(ctx context.Context, sql string, args ...any) (pgx.Rows, error) {
		rows.go#L29: 	r   pgx.Rows
		tx.go#L73: func (tx *Tx) Query(ctx context.Context, sql string, args ...any) (pgx.Rows, error) {

	go.pact.im/x/pgxprocess
		errors.go#L62: func (errBatchResults) Query() (pgx.Rows, error) {
		handle.go#L17: 	Query(context.Context, string, ...any) (pgx.Rows, error)
		handle.go#L67: func (h *handle[T, P]) Query(ctx context.Context, sql string, args ...any) (pgx.Rows, error) {