X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass.pm;h=998674603390a3118b3dfcf511d34cd4c99ba9a3;hb=6882de2b334aac0a278b1984e82ddaca2ddff2b4;hp=705b8b01dc18a8ca1b69ad38618c85b41f4c0a1f;hpb=bd077b47647c73ffb3ff5e9f015da8992263a0e9;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index 705b8b0..9986746 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -24,7 +24,7 @@ sub component_base_class { 'DBIx::Class' } # i.e. first release of 0.XX *must* be 0.XX000. This avoids fBSD ports # brain damage and presumably various other packaging systems too -$VERSION = '0.08099_01'; +$VERSION = '0.08100'; $VERSION = eval $VERSION; # numify for warning-free dev releases @@ -68,28 +68,28 @@ Create a schema class called MyDB/Schema.pm: package MyDB::Schema; use base qw/DBIx::Class::Schema/; - __PACKAGE__->load_classes(); + __PACKAGE__->load_namespaces(); 1; Create a table class to represent artists, who have many CDs, in -MyDB/Schema/Artist.pm: +MyDB/Schema/Result/Artist.pm: - package MyDB::Schema::Artist; + package MyDB::Schema::Result::Artist; use base qw/DBIx::Class/; __PACKAGE__->load_components(qw/Core/); __PACKAGE__->table('artist'); __PACKAGE__->add_columns(qw/ artistid name /); __PACKAGE__->set_primary_key('artistid'); - __PACKAGE__->has_many(cds => 'MyDB::Schema::CD'); + __PACKAGE__->has_many(cds => 'MyDB::Schema::Result::CD'); 1; A table class to represent a CD, which belongs to an artist, in -MyDB/Schema/CD.pm: +MyDB/Schema/Result/CD.pm: - package MyDB::Schema::CD; + package MyDB::Schema::Result::CD; use base qw/DBIx::Class/; __PACKAGE__->load_components(qw/Core/); @@ -121,7 +121,7 @@ Then you can use these classes in your application's code: # Execute a joined query to get the cds. my @all_john_cds = $johns_rs->search_related('cds')->all; - # Fetch only the next row. + # Fetch the next available row. my $first_john = $johns_rs->next; # Specify ORDER BY on the query. @@ -215,7 +215,9 @@ blblack: Brandon L. Black bluefeet: Aran Deltac -captainL: Luke Saunders +bricas: Brian Cassidy + +caelum: Rafael Kitover castaway: Jess Robinson @@ -231,16 +233,20 @@ dkubb: Dan Kubb dnm: Justin Wheeler -draven: Marcus Ramberg - dwc: Daniel Westermann-Clark dyfrgi: Michael Leuchtenburg gphat: Cory G Watson +groditi: Guillermo Roditi + +ilmari: Dagfinn Ilmari MannsEker + jesper: Jesper Krogh +jgoulah: John Goulah + jguenther: Justin Guenther jnapiorkowski: John Napiorkowski @@ -251,16 +257,22 @@ jshirley: J. Shirley konobi: Scott McWhirter -LTJake: Brian Cassidy +lukes: Luke Saunders + +marcus: Marcus Ramberg mattlaw: Matt Lawrence +michaelr: Michael Reddick + ned: Neil de Carteret nigel: Nigel Metheringham ningu: David Kamholz +norbi: Norbert Buchmuller + Numa: Dan Sully oyse: Øystein Torget @@ -271,18 +283,32 @@ penguin: K J Cheetham perigrin: Chris Prather +Peter Collingbourne + phaylon: Robert Sedlacek +plu: Johannes Plunien + quicksilver: Jules Bean +rafl: Florian Ragwitz + rdj: Ryan D Johnson +ribasushi: Peter Rabbitson + +rjbs: Ricardo Signes + +robkinyon: Rob Kinyon + sc_: Just Another Perl Hacker scotty: Scotty Allen semifor: Marc Mims +solomon: Jared Johnson + sszabo: Stephan Szabo teejay : Aaron Trevena @@ -299,6 +325,8 @@ wdh: Will Hawes willert: Sebastian Willert +wreis: Wallace Reis + zamolxes: Bogdan Lucaciu =head1 LICENSE