3 DBIx::Class::Manual::DocMap - What documentation do we have?
9 =item L<DBIx::Class::Manual> - User's Manual overview.
11 =item L<DBIx::Class::Manual::Intro> - Introduction to setting up and using DBIx::Class.
13 =item L<DBIx::Class::Manual::Example> - Full example Schema.
15 =item L<DBIx::Class::Manual::SQLHackers> - How to use DBIx::Class if you know SQL (external, available on CPAN)
17 =item L<DBIx::Class::Manual::Joining> - Joining tables with DBIx::Class.
19 =item L<DBIx::Class::Manual::Features> - A boatload of DBIx::Class features with links to respective documentation.
21 =item L<DBIx::Class::Manual::Glossary> - What do all those terms mean?
23 =item L<DBIx::Class::Manual::Cookbook> - Various short recipes on how to do things.
25 =item L<DBIx::Class::Manual::FAQ> - Frequently Asked Questions, gathered from IRC and the mailing list.
27 =item L<DBIx::Class::Manual::Troubleshooting> - What to do if things go wrong (diagnostics of known error messages).
31 =head1 Some essential reference documentation
33 The first two list items are the most important.
37 =item L<DBIx::Class::ResultSet/search> - Selecting and manipulating sets.
39 The DSL (mini-language) for query composition is only partially explained there,
40 see L<SQL::Abstract/WHERE CLAUSES> for the complete details.
42 =item L<C<$schema>::Result::C<$resultclass>|DBIx::Class::Manual::ResultClass>
43 - Classes representing a single result (row) from a DB query.
45 Such classes normally subclass L<DBIx::Class::Core>, the methods inherited
46 from L<DBIx::Class::Row|DBIx::Class::Row/METHODS> and
47 L<DBIx::Class::Relationship::Base|DBIx::Class::Relationship::Base/METHODS>
50 =item L<DBIx::Class::ResultSetColumn> - Perform operations on a single column of a ResultSet.
52 =item L<DBIx::Class::ResultSource> - Source/Table definition functions.
54 =item L<DBIx::Class::Schema> - Overall sources, and connection container.
56 =item L<DBIx::Class::Relationship> - Simple relationship declarations.
58 =item L<DBIx::Class::Relationship::Base> - Relationship declaration details.
60 =item L<DBIx::Class::InflateColumn> - Making objects out of your column values.