Changed COUNT code in cursor to use selectrow_array (cheers dkubb)
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Core.pm
CommitLineData
ea2e61bf 1package DBIx::Class::Core;
2
3use strict;
4use warnings;
5
12bbb339 6use base qw/DBIx::Class::Relationship
b8e1e21f 7 DBIx::Class::SQL::OrderBy
12bbb339 8 DBIx::Class::SQL::Abstract
9 DBIx::Class::PK
8fe001e1 10 DBIx::Class::Table
11 DBIx::Class::SQL
510ca912 12 DBIx::Class::DB
13 DBIx::Class::AccessorGroup/;
ea2e61bf 14
151;
34d52be2 16
17=head1 NAME
18
19DBIx::Class::Core - Core set of DBIx::Class modules.
20
21=head1 DESCRIPTION
22
23This class just inherits from the various modules that makes
24up the Class::DBI core features.
25
26
27=head1 AUTHORS
28
29Matt S. Trout <perl-stuff@trout.me.uk>
30
31=head1 LICENSE
32
33You may distribute this code under the same terms as Perl itself.
34
35=cut
36