Lo, doth everything now use resultset_instance
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Core.pm
CommitLineData
ea2e61bf 1package DBIx::Class::Core;
2
3use strict;
4use warnings;
223b8fe3 5no warnings 'qw';
ea2e61bf 6
126042ee 7use base qw/DBIx::Class/;
8
9__PACKAGE__->load_components(qw/
126042ee 10 InflateColumn
438adc0e 11 Relationship
126042ee 12 PK
7624b19f 13 Row
126042ee 14 Table
3c0068c1 15 ResultSetInstance
126042ee 16 Exception
17 AccessorGroup/);
ea2e61bf 18
191;
34d52be2 20
21=head1 NAME
22
23DBIx::Class::Core - Core set of DBIx::Class modules.
24
25=head1 DESCRIPTION
26
27This class just inherits from the various modules that makes
076652e8 28up the DBIx::Class core features. This makes it a convenient base
29class for your DBIx::Class setup.
34d52be2 30
076652e8 31At the moment those are:
32
33=over 4
34
35=item L<DBIx::Class::InflateColumn>
36
37=item L<DBIx::Class::Relationship>
38
39=item L<DBIx::Class::PK>
40
41=item L<DBIx::Class::Row>
42
43=item L<DBIx::Class::Table>
44
45=item L<DBIx::Class::Exception>
46
47=item L<DBIx::Class::AccessorGroup>
48
49=back
34d52be2 50
51=head1 AUTHORS
52
daec44b8 53Matt S. Trout <mst@shadowcatsystems.co.uk>
34d52be2 54
55=head1 LICENSE
56
57You may distribute this code under the same terms as Perl itself.
58
59=cut
60