X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FManual%2FFeatures.pod;h=a28bb355808a75027376af884c8d6a4dc46f28fe;hb=3334d204fcbbddedd73a7f63a285bdda9cb3e031;hp=6f96d7384ef6efdd0d6b632a72df75144ada19d8;hpb=9ba33dac83e74b37b5bde62f0f9da4cf22c0e7e4;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Manual/Features.pod b/lib/DBIx/Class/Manual/Features.pod index 6f96d73..a28bb35 100644 --- a/lib/DBIx/Class/Manual/Features.pod +++ b/lib/DBIx/Class/Manual/Features.pod @@ -12,7 +12,7 @@ support. =head2 Active Community -Currently (June 9, 2010) 6 active branches (commited to +Currently (June 9, 2010) 6 active branches (committed to in the last two weeks) in git. Last release (0.08122) had 14 new features, and 16 bug fixes. Of course that L.) @@ -171,7 +171,7 @@ See L =back -=head2 OO Overidability +=head2 OO Overridability =over 1 @@ -254,11 +254,11 @@ Create a DBIx::Class schema from your database. my $schema = Frew::Schema->connect( $dsn, $user, $pass ); -See L and L. +See L and L. =head2 Populate -Made for inserting lots of rows very quicky into database +Made for inserting lots of rows very quickly into database $schema->populate([ Users => [qw( username password )], @@ -274,7 +274,7 @@ I use populate L to export =head2 Multicreate -Create an object and it's related objects all at once +Create an object and its related objects all at once $schema->resultset('Author')->create({ name => 'Stephen King', @@ -495,7 +495,7 @@ See: L, L and L -Note that it automaticaly fills in foreign key for you +Note that it automatically fills in foreign key for you =head2 Excellent Transaction Support @@ -597,7 +597,7 @@ See L for (@res) { say $_->price . ' ' . $_->genre; say $_->get_column('max_price'); - say $_->get_column('min_price'); + say $_->get_column('avg_price'); } See L, L, and @@ -605,7 +605,7 @@ L =over 1 -=item Careful, get_column can basicaly mean B things +=item Careful, get_column can basically mean B things =item private in which case you should use an accessor @@ -646,7 +646,7 @@ See L and L { -in => $inner_query }, }); -See L +See L =head2 Bare SQL w/ Placeholders @@ -661,5 +661,5 @@ Better: price => \['price + ?', [inc => $inc]], }); -See L +See L