github.com/jackc/pgx/v4.connRows.resultReader (field)

10 uses

	github.com/jackc/pgx/v4 (current package)
		batch.go#L134: 	rows.resultReader = br.mrr.ResultReader()
		conn.go#L603: 			rows.resultReader = mrr.ResultReader()
		conn.go#L668: 		rows.resultReader = c.pgConn.ExecParams(ctx, sql, c.eqb.paramValues, sd.ParamOIDs, c.eqb.paramFormats, resultFormats)
		conn.go#L670: 		rows.resultReader = c.pgConn.ExecPrepared(ctx, sd.Name, c.eqb.paramValues, c.eqb.paramFormats, resultFormats)
		rows.go#L110: 	resultReader      *pgconn.ResultReader
		rows.go#L117: 	return rows.resultReader.FieldDescriptions()
		rows.go#L127: 	if rows.resultReader != nil {
		rows.go#L129: 		rows.commandTag, closeErr = rows.resultReader.Close()
		rows.go#L183: 	if rows.resultReader.NextRow() {
		rows.go#L185: 		rows.values = rows.resultReader.Values()