ResultSetInstance is now a component on DB, some test cleanup
[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
cda04c3a 14 TableInstance
126042ee 15 Exception
43bfe414 16 AccessorGroup/);
ea2e61bf 17
181;
34d52be2 19
20=head1 NAME
21
22DBIx::Class::Core - Core set of DBIx::Class modules.
23
24=head1 DESCRIPTION
25
26This class just inherits from the various modules that makes
076652e8 27up the DBIx::Class core features. This makes it a convenient base
28class for your DBIx::Class setup.
34d52be2 29
076652e8 30At the moment those are:
31
32=over 4
33
34=item L<DBIx::Class::InflateColumn>
35
36=item L<DBIx::Class::Relationship>
37
38=item L<DBIx::Class::PK>
39
40=item L<DBIx::Class::Row>
41
42=item L<DBIx::Class::Table>
43
44=item L<DBIx::Class::Exception>
45
46=item L<DBIx::Class::AccessorGroup>
47
48=back
34d52be2 49
50=head1 AUTHORS
51
daec44b8 52Matt S. Trout <mst@shadowcatsystems.co.uk>
34d52be2 53
54=head1 LICENSE
55
56You may distribute this code under the same terms as Perl itself.
57
58=cut
59