Commit | Line | Data |
ea2e61bf |
1 | package DBIx::Class; |
2 | |
5d283305 |
3 | use strict; |
4 | use warnings; |
5 | |
ea2e61bf |
6 | use base qw/DBIx::Class::CDBICompat DBIx::Class::Core/; |
7 | |
5d283305 |
8 | use vars qw($VERSION); |
9 | |
10 | $VERSION = '0.01'; |
11 | |
ea2e61bf |
12 | 1; |
34d52be2 |
13 | |
14 | =head1 NAME |
15 | |
16 | DBIx::Class - Because the brain is a terrible thing to waste. |
17 | |
18 | =head1 SYNOPSIS |
19 | |
20 | =head1 DESCRIPTION |
21 | |
22 | This is a sql to oop mapper, inspired by the L<Class::DBI> framework, |
23 | and meant to support compability with it, while restructuring the |
24 | insides, and making it possible to support some new features like |
25 | self-joins, distinct, group bys and more. |
26 | |
27 | =head1 AUTHORS |
28 | |
29 | Matt S. Trout <perl-stuff@trout.me.uk> |
30 | |
31 | =head1 LICENSE |
32 | |
33 | You may distribute this code under the same terms as Perl itself. |
34 | |
35 | =cut |
36 | |