File: DocMap.pod

package info (click to toggle)
libdbix-class-perl 0.07003-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,396 kB
  • ctags: 764
  • sloc: perl: 7,046; sql: 217; makefile: 43
file content (69 lines) | stat: -rw-r--r-- 2,031 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
=head1 NAME

DBIx::Class::Manual::DocMap - What documentation do we have?

=head1 Manuals

=over 4

=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::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::Serialize::Storable> - ?

=item L<DBIx::Class::InflateColumn> - Making objects out of your columns.

=item L<DBIx::Class::InflateColumn::DateTime> - Magically turn your datetime or timestamp columns into DateTime objects.

=item L<DBIx::Class::PK> - Dealing with primary keys.

=item L<DBIx::Class::ResultSourceProxy::Table> - Turns the resultsource into a table.

=item L<DBIx::Class::AccessorGroup> - Accessor grouping.

=back

=head1 Retrieving and creating data

=over 4

=item L<DBIx::Class::ResultSet> - Selecting and manipulating sets.

=item L<DBIx::Class::ResultSetColumn> - Perform operations on entire columns of a ResultSet.

=item L<DBIx::Class::Row> - Dealing with actual data.

=item L<DBIx::Class::Storage::DBI> - Storage using L<DBI> and L<SQL::Abstract>.

=back