X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass.pm;h=daaddc8fd2dfcf384add1a9fa39ecacbb359cbba;hb=1edd17220a3f0fa2768084572d8ca57cfc2a2fcc;hp=c9d846b386c06515fdb54dfe10792a521804e5d3;hpb=39fe0e65163d92789ef01b7ce4530ff2e7b79eb2;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index c9d846b..daaddc8 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -3,17 +3,17 @@ package DBIx::Class; use strict; use warnings; -use base qw/DBIx::Class::CDBICompat DBIx::Class::Core/; - use vars qw($VERSION); +use base qw/DBIx::Class::Componentised Class::Data::Inheritable/; + +$VERSION = '0.03004'; -$VERSION = '0.01'; 1; =head1 NAME -DBIx::Class - Because the brain is a terrible thing to waste. +DBIx::Class - Extensible and flexible object <-> relational mapper. =head1 SYNOPSIS @@ -24,31 +24,90 @@ and meant to support compability with it, while restructuring the insides, and making it possible to support some new features like self-joins, distinct, group bys and more. +It's currently considered EXPERIMENTAL - bring this near a production +database at your own risk! The API is *not* fixed yet, although most of +the primitives should be good for the future and any API changes will be +posted to the mailing list before they're committed. + +The community can be found via - + + Mailing list: http://lists.rawmode.org/mailman/listinfo/dbix-class/ + + SVN: http://dev.catalyst.perl.org/repos/bast/trunk/DBIx-Class/ + + Wiki: http://dbix-class.shadowcatsystems.co.uk/ + + IRC: irc.perl.org#dbix-class + =head1 QUICKSTART -If you're using Class::DBI, replacing +If you're using Class::DBI, and want an easy and fast way of migrating to +DBIx::Class look at L. + +There are two ways of using DBIx::Class, the 'simple' and the 'schema' one. + +The 'simple' way of using DBIx::Class needs less classes than the 'schema' +way but doesn't give you the ability to use different database connections. + +Some examples where different database connections are useful are: + +different users with different rights +different databases with the same schema. + +=head1 Simple + +First you need to create a base class all other classes inherit from. + +Look at L how to do this + +Next you need to create a class for every table you want to use with +DBIx::Class. + +Look at L how to do this. + + +=head2 Schema + +With this approach the table classes inherit directly from DBIx::Class::Core, +although it might be a good idea to create a 'parent' class for all table +classes which inherits from DBIx::Class::Core and adds additional methods +needed by all table classes, e.g. reading a config file, loading auto primary +key support. + +Look at L how to do this. + +If you need more hand-holding, check out the introduction in the +manual below. + +=head1 SEE ALSO + +=over 4 + +=item L - DBIC Core Classes + +=item L - L Compat layer. + +=item L - User's manual. -use base qw/Class::DBI/; +=back -with +=head1 AUTHOR -use base qw/DBIx::Class::CDBICompat DBIx::Class::Core/; +Matt S. Trout -will probably get you started. +=head1 CONTRIBUTORS -If you're using AUTO_INCREMENT for your primary columns, you'll also want -PK::Auto and an appropriate PK::Auto::DBName (e.g. ::SQLite). +Andy Grundman -If you fancy playing around with DBIx::Class from scratch, then read the docs -for ::Table and ::Relationship, +Brian Cassidy -use base qw/DBIx::Class/; +Dan Kubb -and have a look at t/lib/DBICTest.pm for a brief example. +Dan Sully -=head1 AUTHORS +davekam -Matt S. Trout +Marcus Ramberg =head1 LICENSE