Added Numa's count_all, removed warns from mysql and pg tests
[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
55e2d745 7__PACKAGE__->load_own_components(qw/
8 Constraints
9 Triggers
10 ReadOnly
11 GetSet
12 LiveObjectIndex
13 AttributeAPI
14 Stringify
15 DestroyWarning
16 Constructor
17 AccessorMapping
18 ColumnCase
19 MightHave
20 HasMany
21 HasA
22 LazyLoading
23 AutoUpdate
24 TempColumns
25 Retrieve
26 ColumnGroups
27 ImaDBI/);
28
29 #DBIx::Class::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