X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FRow.pm;h=4c7110f89f29032a26a1e24807ea551535ed13d3;hb=4ca1fd6fb90a85f5138d11f580394025aa20ea4a;hp=ca89b773b8206fe8049b8272b7cedde543b56e58;hpb=fb13a49f17a0e0a49638080a4bd826fb3702aebe;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/Row.pm b/lib/DBIx/Class/Row.pm index ca89b77..4c7110f 100644 --- a/lib/DBIx/Class/Row.pm +++ b/lib/DBIx/Class/Row.pm @@ -5,7 +5,6 @@ use warnings; use base qw/DBIx::Class/; -use DBIx::Class::Exception; use Scalar::Util 'blessed'; use List::Util 'first'; use Try::Tiny; @@ -301,9 +300,12 @@ sub new { A column accessor method is created for each column, which is used for getting/setting the value for that column. -The actual method name is based on the L -name given in the table definition. Like L, this will -not store the data until L or L is called on the row. +The actual method name is based on the +L name given during the +L L. Like L, this +will not store the data in the database until L or L +is called on the row. =head2 insert @@ -322,7 +324,7 @@ it isn't already in there. Returns the object itself. To insert an entirely new row into the database, use L. To fetch an uninserted result object, call -L on a resultset. +L on a resultset. This will also insert any uninserted, related objects held inside this one, see L for more details. @@ -475,8 +477,8 @@ not. This is set to true when L, L or L are used. -Creating a result object using L, or calling -L on one, sets it to false. +Creating a result object using L, or +calling L on one, sets it to false. =cut