Commit | Line | Data |
ea2e61bf |
1 | package DBIx::Class::CDBICompat; |
2 | |
3 | use strict; |
4 | use warnings; |
126042ee |
5 | use base qw/DBIx::Class/; |
6 | |
7 | __PACKAGE__->load_components(qw/ |
8 | CDBICompat::Constraints |
9 | CDBICompat::Triggers |
10 | CDBICompat::ReadOnly |
11 | CDBICompat::GetSet |
12 | CDBICompat::LiveObjectIndex |
13 | CDBICompat::AttributeAPI |
14 | CDBICompat::Stringify |
15 | CDBICompat::DestroyWarning |
16 | CDBICompat::Constructor |
17 | CDBICompat::AccessorMapping |
18 | CDBICompat::ColumnCase |
19 | CDBICompat::MightHave |
20 | CDBICompat::HasMany |
21 | CDBICompat::HasA |
22 | CDBICompat::LazyLoading |
23 | CDBICompat::AutoUpdate |
24 | CDBICompat::TempColumns |
656796f2 |
25 | CDBICompat::Retrieve |
126042ee |
26 | CDBICompat::ColumnGroups |
27 | CDBICompat::ImaDBI/); |
ea2e61bf |
28 | |
95a70f01 |
29 | #DBIx::Class::CDBICompat::ObjIndexStubs |
ea2e61bf |
30 | 1; |
34d52be2 |
31 | |
32 | =head1 NAME |
33 | |
34 | DBIx::Class::CDBICompat - Class::DBI Compatability layer. |
35 | |
36 | =head1 DESCRIPTION |
37 | |
38 | This class just inherits from the various modules that makes |
39 | up the Class::DBI compability layer. |
40 | |
41 | |
42 | =head1 AUTHORS |
43 | |
44 | Matt S. Trout <perl-stuff@trout.me.uk> |
45 | |
46 | =head1 LICENSE |
47 | |
48 | You may distribute this code under the same terms as Perl itself. |
49 | |
50 | =cut |
51 | |