Cursor abstracted, delete_related added
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / CDBICompat.pm
CommitLineData
ea2e61bf 1package DBIx::Class::CDBICompat;
2
3use strict;
4use warnings;
126042ee 5use 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 301;
34d52be2 31
32=head1 NAME
33
34DBIx::Class::CDBICompat - Class::DBI Compatability layer.
35
36=head1 DESCRIPTION
37
38This class just inherits from the various modules that makes
39up the Class::DBI compability layer.
40
41
42=head1 AUTHORS
43
44Matt S. Trout <perl-stuff@trout.me.uk>
45
46=head1 LICENSE
47
48You may distribute this code under the same terms as Perl itself.
49
50=cut
51