3 DBIx::Class::Manual::Glossary - Clarification of terms used.
7 This document lists various terms used in DBIx::Class and attempts to explain them.
15 This is an object representing a set of data. It can either be an
16 entire table, or the results of a query. The actual data is not held
17 in the ResultSet, it is only a description of how to fetch the data.
19 See also: L<DBIx::Class::ResultSet/METHODS>
23 ResultSource objects represent the source of your data, they are also known as
26 See also: L<DBIx::Class::ResultSource/METHODS>
34 Row objects contain your actual data. They are returned from ResultSet objects.
42 A Schema object represents your entire table collection, plus the
43 connection to the database. You can create one or more schema objects,
44 connected to various databases, with various users, using the same set
45 of table (ResultSource) definitions.