basic pod stubs for everything but the CDBI compat layer.
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class.pm
CommitLineData
ea2e61bf 1package DBIx::Class;
2
5d283305 3use strict;
4use warnings;
5
ea2e61bf 6use base qw/DBIx::Class::CDBICompat DBIx::Class::Core/;
7
5d283305 8use vars qw($VERSION);
9
10$VERSION = '0.01';
11
ea2e61bf 121;
34d52be2 13
14=head1 NAME
15
16DBIx::Class - Because the brain is a terrible thing to waste.
17
18=head1 SYNOPSIS
19
20=head1 DESCRIPTION
21
22This is a sql to oop mapper, inspired by the L<Class::DBI> framework,
23and meant to support compability with it, while restructuring the
24insides, and making it possible to support some new features like
25self-joins, distinct, group bys and more.
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