Hydration
Table of Contents
Classes
- AbstractHydrator
- Base class for all hydrators. A hydrator is a class that provides some form
of transformation of an SQL result set into another structure.
- ArrayHydrator
- The ArrayHydrator produces a nested array "graph" that is often (not always)
interchangeable with the corresponding object graph for read-only access.
- HydrationException
- Should become an interface in 3.0
- IterableResult
- Represents a result structure that can be iterated over, hydrating row-by-row
during the iteration. An IterableResult is obtained by AbstractHydrator#iterate().
- ObjectHydrator
- The ObjectHydrator constructs an object graph out of an SQL result set.
- ScalarColumnHydrator
- Hydrator that produces one-dimensional array.
- ScalarHydrator
- Hydrator that produces flat, rectangular results of scalar data.
- SimpleObjectHydrator
- Base class for all hydrators. A hydrator is a class that provides some form
of transformation of an SQL result set into another structure.
- SingleScalarHydrator
- Hydrator that hydrates a single scalar value from the result set.