point out where in the docs a user is most likely to spend reading time
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Manual / DocMap.pod
index 5820d03..13ffa78 100644 (file)
@@ -8,64 +8,44 @@ DBIx::Class::Manual::DocMap - What documentation do we have?
 
 =item L<DBIx::Class::Manual> - User's Manual overview.
 
-=item L<DBIx::Class::Manual::FAQ> - Frequently Asked Questions, gathered from IRC and the mailing list.
-
 =item L<DBIx::Class::Manual::Intro> - Introduction to setting up and using DBIx::Class.
 
 =item L<DBIx::Class::Manual::Example> - Full example Schema.
 
-=item L<DBIx::Class::Manual::Cookbook> - Various short recipes on how to do things.
-
-=item L<DBIx::Class::Manual::Troubleshooting> - What to do if things go wrong (diagnostics of known error messages).
-
-=item L<DBIx::Class::Manual::Component> - How to write your own DBIx::Class components.
+=item L<DBIx::Class::Manual::SQLHackers> - How to use DBIx::Class if you know SQL (external, available on CPAN)
 
 =item L<DBIx::Class::Manual::Glossary> - What do all those terms mean?
 
-=back
-
-=head1 Setting up
-
-=over 4
-
-=item L<DBIx::Class::Schema> - Overall schemas, and connection container.
-
-=item L<DBIx::Class::ResultSource> - Source/Table definition functions.
-
-=item L<DBIx::Class::Relationship> - Simple relationships.
-
-=item L<DBIx::Class::Relationship::Base> - Relationship details.
-
-=item L<DBIx::Class::PK::Auto> - Magically retrieve auto-incrementing fields.
-
-=item L<DBIx::Class::Core> - Set of standard components to load.
+=item L<DBIx::Class::Manual::Cookbook> - Various short recipes on how to do things.
 
-=item L<DBIx::Class::Serialize::Storable> - ?
+=item L<DBIx::Class::Manual::FAQ> - Frequently Asked Questions, gathered from IRC and the mailing list.
 
-=item L<DBIx::Class::InflateColumn> - Making objects out of your columns.
+=item L<DBIx::Class::Manual::Troubleshooting> - What to do if things go wrong (diagnostics of known error messages).
 
-=item L<DBIx::Class::InflateColumn::DateTime> - Magically turn your datetime or timestamp columns into DateTime objects.
+=back
 
-=item L<DBIx::Class::PK> - Dealing with primary keys.
+=head1 Some essential reference documentation
 
-=item L<DBIx::Class::ResultSourceProxy::Table> - Turns the resultsource into a table.
+The first two list items are the most important.
 
-=item L<DBIx::Class::AccessorGroup> - Accessor grouping.
+=over 4
 
-=back
+=item L<DBIx::Class::ResultSet/search> - Selecting and manipulating sets.
 
-=head1 Retrieving and creating data
+=item L<DBIx::Class::$resultclass (normally based on DBIx::Class::Core)|DBIx::Class::Manual::ResultClass>
+- Representing a single result (row) from a DB query. The methods inherited from
+L<DBIx::Class::Row> and L<DBIx::Class::Relationship::Base> are used most often.
 
-=over 4
+=item L<DBIx::Class::ResultSetColumn> - Perform operations on a single column of a ResultSet.
 
-=item L<DBIx::Class::ResultSet> - Selecting and manipulating sets.
+=item L<DBIx::Class::ResultSource> - Source/Table definition functions.
 
-=item L<DBIx::Class::ResultSetColumn> - Perform operations on entire columns of a ResultSet.
+=item L<DBIx::Class::Schema> - Overall sourcess, and connection container.
 
-=item L<DBIx::Class::Row> - Dealing with actual data.
+=item L<DBIx::Class::Relationship> - Simple relationship declarations.
 
-=item L<DBIx::Class::Storage> - Basic Storage stuff.
+=item L<DBIx::Class::Relationship::Base> - Relationship declaration details.
 
-=item L<DBIx::Class::Storage::DBI> - Storage using L<DBI> and L<SQL::Abstract>.
+=item L<DBIx::Class::InflateColumn> - Making objects out of your column values.
 
 =back