X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass.pm;h=dc4123a38534eb8a0b8021d8ad9e0976936879fa;hb=31073ac79e22ae0f977c7e0fc4e9857d250143c4;hp=b2c38d1e6bea85cdf7d3ba5411b2522eebd3f9e4;hpb=86a23587c7464cf3768f75a0a295155fbf4b9afe;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index b2c38d1..dc4123a 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -135,6 +135,11 @@ The project is maintained in a git repository, accessible from the following sou =item * authorized committers: L +=item * Travis-CI log: L + +=for html + + =back =head1 SYNOPSIS @@ -225,7 +230,7 @@ Then you can use these classes in your application's code: my $cd = $millennium_cds_rs->next; # SELECT ... FROM cds JOIN artists ... my $cd_artist_name = $cd->artist->name; # Already has the data so no 2nd query - # new() makes a DBIx::Class::Row object but doesnt insert it into the DB. + # new() makes a Result object but doesnt insert it into the DB. # create() is the same as new() then insert(). my $new_cd = $schema->resultset('CD')->new({ title => 'Spoon' }); $new_cd->artist($cd->artist);