Delist Example and add QuickStart to the DocMap
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Manual / DocMap.pod
index 83c9633..b6eaa25 100644 (file)
@@ -8,12 +8,16 @@ DBIx::Class::Manual::DocMap - What documentation do we have?
 
 =item L<DBIx::Class::Manual> - User's Manual overview.
 
-=item L<DBIx::Class::Manual::Intro> - Introduction to setting up and using DBIx::Class.
+=item L<DBIx::Class::Manual::QuickStart> - Up and running with DBIC in 10 minutes.
 
-=item L<DBIx::Class::Manual::Example> - Full example Schema.
+=item L<DBIx::Class::Manual::Intro> - More detailed introduction to setting up and using DBIx::Class.
 
 =item L<DBIx::Class::Manual::SQLHackers> - How to use DBIx::Class if you know SQL (external, available on CPAN)
 
+=item L<DBIx::Class::Manual::Joining> - Joining tables with DBIx::Class.
+
+=item L<DBIx::Class::Manual::Features> - A boatload of DBIx::Class features with links to respective documentation.
+
 =item L<DBIx::Class::Manual::Glossary> - What do all those terms mean?
 
 =item L<DBIx::Class::Manual::Cookbook> - Various short recipes on how to do things.
@@ -26,17 +30,28 @@ DBIx::Class::Manual::DocMap - What documentation do we have?
 
 =head1 Some essential reference documentation
 
+The first two list items are the most important.
+
 =over 4
 
-=item L<DBIx::Class::$resultclass (normally based on DBIx::Class::Core)|DBIx::Class::Manual::ResultClass> - Representing a single result (row) from a DB query
+=item L<DBIx::Class::ResultSet/search> - Selecting and manipulating sets.
+
+The DSL (mini-language) for query composition is only partially explained there,
+see L<SQL::Abstract/WHERE CLAUSES> for the complete details.
+
+=item L<C<$schema>::Result::C<$resultclass>|DBIx::Class::Manual::ResultClass>
+- Classes representing a single result (row) from a DB query.
 
-=item L<DBIx::Class::ResultSet> - Selecting and manipulating sets.
+Such classes normally subclass L<DBIx::Class::Core>, the methods inherited
+from L<DBIx::Class::Row|DBIx::Class::Row/METHODS> and
+L<DBIx::Class::Relationship::Base|DBIx::Class::Relationship::Base/METHODS>
+are used most often.
 
 =item L<DBIx::Class::ResultSetColumn> - Perform operations on a single column of a ResultSet.
 
 =item L<DBIx::Class::ResultSource> - Source/Table definition functions.
 
-=item L<DBIx::Class::Schema> - Overall sourcess, and connection container.
+=item L<DBIx::Class::Schema> - Overall sources, and connection container.
 
 =item L<DBIx::Class::Relationship> - Simple relationship declarations.