X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FManual%2FFeatures.pod;h=523e92700247a42d0ae7a19a2bd6643cd7220733;hb=5529838f7afff91467ef2664087999ab222da48d;hp=86eb584bbf9157e2f87570540675d350952f9786;hpb=f165eda8a5bb8140f9b40d78089d5db3d8edf572;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/Manual/Features.pod b/lib/DBIx/Class/Manual/Features.pod index 86eb584..523e927 100644 --- a/lib/DBIx/Class/Manual/Features.pod +++ b/lib/DBIx/Class/Manual/Features.pod @@ -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', @@ -479,7 +479,9 @@ on our system (Microsoft SQL) is: ) rpt_score WHERE rno__row__index BETWEEN 1 AND 1 -See: L, L, and L. +See: L, +L, and +L. =head2 bonus rel methods @@ -605,7 +607,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 @@ -661,5 +663,5 @@ Better: price => \['price + ?', [inc => $inc]], }); -See L +See L