Move DocMap link to top of DBIx::Class to prevent it being missed
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Manual / DocMap.pod
CommitLineData
7e2d47fc 1=head1 NAME
2
3DBIx::Class::Manual::DocMap - What documentation do we have?
550a5cb0 4
5=head1 Manuals
6
7=over 4
8
9=item L<DBIx::Class::Manual> - User's Manual overview.
10
11=item L<DBIx::Class::Manual::Intro> - Introduction to setting up and using DBIx::Class.
12
13=item L<DBIx::Class::Manual::Example> - Full example Schema.
14
33eafbfd 15=item L<DBIx::Class::Manual::SQLHackers::TOC> - How to use DBIx::Class if you know SQL (external, available on CPAN)
16
17=item L<DBIx::Class::Manual::Glossary> - What do all those terms mean?
18
550a5cb0 19=item L<DBIx::Class::Manual::Cookbook> - Various short recipes on how to do things.
20
33eafbfd 21=item L<DBIx::Class::Manual::FAQ> - Frequently Asked Questions, gathered from IRC and the mailing list.
22
550a5cb0 23=item L<DBIx::Class::Manual::Troubleshooting> - What to do if things go wrong (diagnostics of known error messages).
24
25=item L<DBIx::Class::Manual::Component> - How to write your own DBIx::Class components.
26
550a5cb0 27=back
28
29=head1 Setting up
30
31=over 4
32
33=item L<DBIx::Class::Schema> - Overall schemas, and connection container.
34
35=item L<DBIx::Class::ResultSource> - Source/Table definition functions.
36
37=item L<DBIx::Class::Relationship> - Simple relationships.
38
39=item L<DBIx::Class::Relationship::Base> - Relationship details.
40
41=item L<DBIx::Class::PK::Auto> - Magically retrieve auto-incrementing fields.
42
2ac88e5a 43=item L<DBIx::Class::Core> - Set of standard components to load.
550a5cb0 44
550a5cb0 45=item L<DBIx::Class::InflateColumn> - Making objects out of your columns.
46
2ac88e5a 47=item L<DBIx::Class::InflateColumn::DateTime> - Magically turn your datetime or timestamp columns into DateTime objects.
48
550a5cb0 49=item L<DBIx::Class::PK> - Dealing with primary keys.
50
51=item L<DBIx::Class::ResultSourceProxy::Table> - Turns the resultsource into a table.
52
53=item L<DBIx::Class::AccessorGroup> - Accessor grouping.
54
550a5cb0 55=back
56
57=head1 Retrieving and creating data
58
59=over 4
60
61=item L<DBIx::Class::ResultSet> - Selecting and manipulating sets.
62
2ac88e5a 63=item L<DBIx::Class::ResultSetColumn> - Perform operations on entire columns of a ResultSet.
64
550a5cb0 65=item L<DBIx::Class::Row> - Dealing with actual data.
66
85f78622 67=item L<DBIx::Class::Storage> - Basic Storage stuff.
68
550a5cb0 69=item L<DBIx::Class::Storage::DBI> - Storage using L<DBI> and L<SQL::Abstract>.
70
7e2d47fc 71=back