X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass.pm;h=b1b7249dc128af051af3416a61a9ee5e50781fff;hb=2441e56f45b903491252be04eda67613d20f73e8;hp=db6eda095904bd4ca6636f790cab169696d816f7;hpb=503536d5b216b4d85ed3f5420f3db93d4c033d86;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index db6eda0..b1b7249 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -6,14 +6,14 @@ use warnings; use vars qw($VERSION); use base qw/DBIx::Class::Componentised/; -$VERSION = '0.03'; +$VERSION = '0.03004'; 1; =head1 NAME -DBIx::Class - Because the brain is a terrible thing to waste. +DBIx::Class - Extensible and flexible object <-> relational mapper. =head1 SYNOPSIS @@ -41,32 +41,55 @@ The community can be found via - =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. - use base qw/Class::DBI/; +There are two ways of using DBIx::Class, the 'simple' and the 'schema' one. -with +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. - use base qw/DBIx::Class/; - __PACKAGE__->load_components(qw/CDBICompat Core DB/); +Some examples where different database connections are useful are: -will probably get you started. +different users with different rights +different databases with the same schema. -If you're using AUTO_INCREMENT for your primary columns, you'll also want -yo load the approriate PK::Auto subclass - e.g. +=head1 Simple - __PACKAGE__->load_components(qw/CDBICompat PK::Auto::SQLite Core DB/); +First you need to create a base class all other classes inherit from. -(with is what ::Test::SQLite does to present the Class::DBI::Test::SQLite -interface) +Look at L how to do this -If you fancy playing around with DBIx::Class from scratch, then read the docs -for DBIx::Class::Table, ::Row, ::Schema, ::DB and ::Relationship, +Next you need to create a class for every table you want to use with +DBIx::Class. - use base qw/DBIx::Class/; - __PACKAGE__->load_components(qw/Core DB/); +Look at L how to do this. -and have a look at t/lib/DBICTest.pm for a brief example. + +=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. + +=back =head1 AUTHOR