New doc
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Manual / DocMap.pod
CommitLineData
550a5cb0 1=head1 NAME DBIx::Class::Manual::DocMap - What documentation do we have?
2
3=head1 Manuals
4
5=over 4
6
7=item L<DBIx::Class::Manual> - User's Manual overview.
8
9=item L<DBIx::Class::Manual::Intro> - Introduction to setting up and using DBIx::Class.
10
11=item L<DBIx::Class::Manual::Example> - Full example Schema.
12
13=item L<DBIx::Class::Manual::Cookbook> - Various short recipes on how to do things.
14
15=item L<DBIx::Class::Manual::Troubleshooting> - What to do if things go wrong (diagnostics of known error messages).
16
17=item L<DBIx::Class::Manual::Component> - How to write your own DBIx::Class components.
18
19=item L<DBIx::Class::Manual::Glossary> - What do all those terms mean?
20
21=back
22
23=head1 Setting up
24
25=over 4
26
27=item L<DBIx::Class::Schema> - Overall schemas, and connection container.
28
29=item L<DBIx::Class::ResultSource> - Source/Table definition functions.
30
31=item L<DBIx::Class::Relationship> - Simple relationships.
32
33=item L<DBIx::Class::Relationship::Base> - Relationship details.
34
35=item L<DBIx::Class::PK::Auto> - Magically retrieve auto-incrementing fields.
36
37=item L<DBIx::Class::Core> - Set of standard components.
38
39=item L<DBIx::Class::Serialize::Storable> - ?
40
41=item L<DBIx::Class::InflateColumn> - Making objects out of your columns.
42
43=item L<DBIx::Class::PK> - Dealing with primary keys.
44
45=item L<DBIx::Class::ResultSourceProxy::Table> - Turns the resultsource into a table.
46
47=item L<DBIx::Class::AccessorGroup> - Accessor grouping.
48
49
50=back
51
52=head1 Retrieving and creating data
53
54=over 4
55
56=item L<DBIx::Class::ResultSet> - Selecting and manipulating sets.
57
58=item L<DBIx::Class::Row> - Dealing with actual data.
59
60=item L<DBIx::Class::Storage> - Virtual methods for all storage types.
61
62=item L<DBIx::Class::Storage::DBI> - Storage using L<DBI> and L<SQL::Abstract>.
63
64=back