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