github.com/jackc/pgx/v5.Conn.Query (method, view implemented interface methods)

6 uses

	github.com/jackc/pgx/v5 (current package)
		conn.go#L751: func (c *Conn) Query(ctx context.Context, sql string, args ...any) (Rows, error) {
		conn.go#L931: 	rows, _ := c.Query(ctx, sql, args...)
		conn.go#L1407: 	rows, _ := c.Query(ctx, `select attname, atttypid
		derived_types.go#L172: 	rows, err := c.Query(ctx, sql, QueryResultFormats{TextFormatCode}, typeNames)
		tx.go#L251: 	return tx.conn.Query(ctx, sql, args...)

	github.com/jackc/pgx/v5/pgxpool
		conn.go#L91: 	return c.Conn().Query(ctx, sql, args...)