spelling fixes in the documaentation, sholud be gud now ;)
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Row.pm
CommitLineData
7624b19f 1package DBIx::Class::Row;
2
3use strict;
4use warnings;
5
1edd1722 6use base qw/DBIx::Class/;
1a58752c 7
8use DBIx::Class::Exception;
33dd4e80 9use Scalar::Util ();
1edd1722 10
0d5d1f12 11###
12### Internal method
13### Do not use
14###
e0cdf2cb 15BEGIN {
16 *MULTICREATE_DEBUG =
17 $ENV{DBIC_MULTICREATE_DEBUG}
18 ? sub () { 1 }
19 : sub () { 0 };
20}
21
aec3eff1 22__PACKAGE__->mk_group_accessors('simple' => qw/_source_handle/);
8c49f629 23
75d07914 24=head1 NAME
7624b19f 25
26DBIx::Class::Row - Basic row methods
27
28=head1 SYNOPSIS
29
30=head1 DESCRIPTION
31
32This class is responsible for defining and doing basic operations on rows
1ea77c14 33derived from L<DBIx::Class::ResultSource> objects.
7624b19f 34
a2531bf2 35Row objects are returned from L<DBIx::Class::ResultSet>s using the
ea36f4e4 36L<create|DBIx::Class::ResultSet/create>, L<find|DBIx::Class::ResultSet/find>,
37L<next|DBIx::Class::ResultSet/next> and L<all|DBIx::Class::ResultSet/all> methods,
38as well as invocations of 'single' (
39L<belongs_to|DBIx::Class::Relationship/belongs_to>,
40L<has_one|DBIx::Class::Relationship/has_one> or
41L<might_have|DBIx::Class::Relationship/might_have>)
42relationship accessors of L<DBIx::Class::Row> objects.
a2531bf2 43
7624b19f 44=head1 METHODS
45
8091aa91 46=head2 new
7624b19f 47
a2531bf2 48 my $row = My::Class->new(\%attrs);
49
50 my $row = $schema->resultset('MySource')->new(\%colsandvalues);
51
52=over
53
54=item Arguments: \%attrs or \%colsandvalues
55
56=item Returns: A Row object
7624b19f 57
a2531bf2 58=back
59
60While you can create a new row object by calling C<new> directly on
61this class, you are better off calling it on a
62L<DBIx::Class::ResultSet> object.
63
64When calling it directly, you will not get a complete, usable row
65object until you pass or set the C<source_handle> attribute, to a
66L<DBIx::Class::ResultSource> instance that is attached to a
67L<DBIx::Class::Schema> with a valid connection.
68
69C<$attrs> is a hashref of column name, value data. It can also contain
70some other attributes such as the C<source_handle>.
7624b19f 71
33dd4e80 72Passing an object, or an arrayref of objects as a value will call
73L<DBIx::Class::Relationship::Base/set_from_related> for you. When
74passed a hashref or an arrayref of hashrefs as the value, these will
75be turned into objects via new_related, and treated as if you had
76passed objects.
77
264f1571 78For a more involved explanation, see L<DBIx::Class::ResultSet/create>.
79
dc5f0ad3 80Please note that if a value is not passed to new, no value will be sent
81in the SQL INSERT call, and the column will therefore assume whatever
82default value was specified in your database. While DBIC will retrieve the
83value of autoincrement columns, it will never make an explicit database
84trip to retrieve default values assigned by the RDBMS. You can explicitly
85request that all values be fetched back from the database by calling
86L</discard_changes>, or you can supply an explicit C<undef> to columns
87with NULL as the default, and save yourself a SELECT.
88
89 CAVEAT:
90
91 The behavior described above will backfire if you use a foreign key column
92 with a database-defined default. If you call the relationship accessor on
93 an object that doesn't have a set value for the FK column, DBIC will throw
94 an exception, as it has no way of knowing the PK of the related object (if
95 there is one).
96
7624b19f 97=cut
98
33dd4e80 99## It needs to store the new objects somewhere, and call insert on that list later when insert is called on this object. We may need an accessor for these so the user can retrieve them, if just doing ->new().
100## This only works because DBIC doesnt yet care to check whether the new_related objects have been passed all their mandatory columns
101## When doing the later insert, we need to make sure the PKs are set.
102## using _relationship_data in new and funky ways..
103## check Relationship::CascadeActions and Relationship::Accessor for compat
104## tests!
105
370f2ba2 106sub __new_related_find_or_new_helper {
107 my ($self, $relname, $data) = @_;
108 if ($self->__their_pk_needs_us($relname, $data)) {
de404241 109 MULTICREATE_DEBUG and warn "MC $self constructing $relname via new_result";
370f2ba2 110 return $self->result_source
111 ->related_source($relname)
112 ->resultset
113 ->new_result($data);
114 }
6d0ee587 115 if ($self->result_source->_pk_depends_on($relname, $data)) {
de404241 116 MULTICREATE_DEBUG and warn "MC $self constructing $relname via find_or_new";
370f2ba2 117 return $self->result_source
118 ->related_source($relname)
119 ->resultset
de404241 120 ->find_or_new($data);
370f2ba2 121 }
de404241 122 MULTICREATE_DEBUG and warn "MC $self constructing $relname via find_or_new_related";
370f2ba2 123 return $self->find_or_new_related($relname, $data);
124}
125
126sub __their_pk_needs_us { # this should maybe be in resultsource.
127 my ($self, $relname, $data) = @_;
128 my $source = $self->result_source;
129 my $reverse = $source->reverse_relationship_info($relname);
130 my $rel_source = $source->related_source($relname);
131 my $us = { $self->get_columns };
132 foreach my $key (keys %$reverse) {
133 # if their primary key depends on us, then we have to
134 # just create a result and we'll fill it out afterwards
6d0ee587 135 return 1 if $rel_source->_pk_depends_on($key, $us);
370f2ba2 136 }
137 return 0;
138}
139
7624b19f 140sub new {
448f820f 141 my ($class, $attrs) = @_;
7624b19f 142 $class = ref $class if ref $class;
04786a4c 143
e60dc79f 144 my $new = {
145 _column_data => {},
146 };
04786a4c 147 bless $new, $class;
148
448f820f 149 if (my $handle = delete $attrs->{-source_handle}) {
150 $new->_source_handle($handle);
151 }
370f2ba2 152
153 my $source;
154 if ($source = delete $attrs->{-result_source}) {
e9fe476b 155 $new->result_source($source);
156 }
a6a280b9 157
fa7a51af 158 if (my $related = delete $attrs->{-cols_from_relations}) {
09e1f723 159 @{$new->{_ignore_at_insert}={}}{@$related} = ();
160 }
161
7624b19f 162 if ($attrs) {
27f01d1f 163 $new->throw_exception("attrs must be a hashref")
164 unless ref($attrs) eq 'HASH';
b6d347e0 165
61a622ee 166 my ($related,$inflated);
8222f722 167
61a622ee 168 foreach my $key (keys %$attrs) {
169 if (ref $attrs->{$key}) {
af2d42c0 170 ## Can we extract this lot to use with update(_or .. ) ?
1a58752c 171 $new->throw_exception("Can't do multi-create without result source")
172 unless $source;
370f2ba2 173 my $info = $source->relationship_info($key);
b82c8a28 174 my $acc_type = $info->{attrs}{accessor} || '';
175 if ($acc_type eq 'single') {
de7c7c53 176 my $rel_obj = delete $attrs->{$key};
33dd4e80 177 if(!Scalar::Util::blessed($rel_obj)) {
370f2ba2 178 $rel_obj = $new->__new_related_find_or_new_helper($key, $rel_obj);
33dd4e80 179 }
2bc3c81e 180
e0cdf2cb 181 if ($rel_obj->in_storage) {
d4fe33d0 182 $new->{_rel_in_storage}{$key} = 1;
e0cdf2cb 183 $new->set_from_related($key, $rel_obj);
184 } else {
09e1f723 185 MULTICREATE_DEBUG and warn "MC $new uninserted $key $rel_obj\n";
e0cdf2cb 186 }
2bc3c81e 187
de7c7c53 188 $related->{$key} = $rel_obj;
61a622ee 189 next;
b82c8a28 190 }
191 elsif ($acc_type eq 'multi' && ref $attrs->{$key} eq 'ARRAY' ) {
2ec8e594 192 my $others = delete $attrs->{$key};
e0cdf2cb 193 my $total = @$others;
194 my @objects;
195 foreach my $idx (0 .. $#$others) {
196 my $rel_obj = $others->[$idx];
2ec8e594 197 if(!Scalar::Util::blessed($rel_obj)) {
370f2ba2 198 $rel_obj = $new->__new_related_find_or_new_helper($key, $rel_obj);
33dd4e80 199 }
2bc3c81e 200
e0cdf2cb 201 if ($rel_obj->in_storage) {
d4fe33d0 202 $rel_obj->throw_exception ('A multi relationship can not be pre-existing when doing multicreate. Something went wrong');
e0cdf2cb 203 } else {
e0cdf2cb 204 MULTICREATE_DEBUG and
09e1f723 205 warn "MC $new uninserted $key $rel_obj (${\($idx+1)} of $total)\n";
e0cdf2cb 206 }
e0cdf2cb 207 push(@objects, $rel_obj);
2ec8e594 208 }
e0cdf2cb 209 $related->{$key} = \@objects;
2ec8e594 210 next;
b82c8a28 211 }
212 elsif ($acc_type eq 'filter') {
33dd4e80 213 ## 'filter' should disappear and get merged in with 'single' above!
2ec8e594 214 my $rel_obj = delete $attrs->{$key};
33dd4e80 215 if(!Scalar::Util::blessed($rel_obj)) {
370f2ba2 216 $rel_obj = $new->__new_related_find_or_new_helper($key, $rel_obj);
33dd4e80 217 }
d4fe33d0 218 if ($rel_obj->in_storage) {
219 $new->{_rel_in_storage}{$key} = 1;
220 }
221 else {
09e1f723 222 MULTICREATE_DEBUG and warn "MC $new uninserted $key $rel_obj";
e0cdf2cb 223 }
33dd4e80 224 $inflated->{$key} = $rel_obj;
61a622ee 225 next;
2ec8e594 226 } elsif ($class->has_column($key)
227 && $class->column_info($key)->{_inflate_info}) {
61a622ee 228 $inflated->{$key} = $attrs->{$key};
229 next;
230 }
231 }
232 $new->throw_exception("No such column $key on $class")
233 unless $class->has_column($key);
b6d347e0 234 $new->store_column($key => $attrs->{$key});
7624b19f 235 }
f90375dd 236
61a622ee 237 $new->{_relationship_data} = $related if $related;
238 $new->{_inflated_column} = $inflated if $inflated;
7624b19f 239 }
04786a4c 240
7624b19f 241 return $new;
242}
243
8091aa91 244=head2 insert
7624b19f 245
a2531bf2 246 $row->insert;
247
248=over
7624b19f 249
a2531bf2 250=item Arguments: none
251
252=item Returns: The Row object
253
254=back
255
256Inserts an object previously created by L</new> into the database if
257it isn't already in there. Returns the object itself. Requires the
258object's result source to be set, or the class to have a
259result_source_instance method. To insert an entirely new row into
260the database, use C<create> (see L<DBIx::Class::ResultSet/create>).
7624b19f 261
e91e756c 262To fetch an uninserted row object, call
263L<new|DBIx::Class::ResultSet/new> on a resultset.
264
264f1571 265This will also insert any uninserted, related objects held inside this
266one, see L<DBIx::Class::ResultSet/create> for more details.
267
7624b19f 268=cut
269
270sub insert {
271 my ($self) = @_;
272 return $self if $self->in_storage;
6aba697f 273 my $source = $self->result_source;
274 $source ||= $self->result_source($self->result_source_instance)
097d3227 275 if $self->can('result_source_instance');
aeb1bf75 276 $self->throw_exception("No result_source set on this object; can't insert")
277 unless $source;
6e399b4f 278
9c6d6d93 279 my $rollback_guard;
280
33dd4e80 281 # Check if we stored uninserted relobjs here in new()
b6d347e0 282 my %related_stuff = (%{$self->{_relationship_data} || {}},
33dd4e80 283 %{$self->{_inflated_column} || {}});
9c6d6d93 284
d4fe33d0 285 # insert what needs to be inserted before us
286 my %pre_insert;
287 for my $relname (keys %related_stuff) {
288 my $rel_obj = $related_stuff{$relname};
9c6d6d93 289
d4fe33d0 290 if (! $self->{_rel_in_storage}{$relname}) {
291 next unless (Scalar::Util::blessed($rel_obj)
292 && $rel_obj->isa('DBIx::Class::Row'));
a8c98174 293
d4fe33d0 294 next unless $source->_pk_depends_on(
295 $relname, { $rel_obj->get_columns }
296 );
a8c98174 297
d4fe33d0 298 # The guard will save us if we blow out of this scope via die
299 $rollback_guard ||= $source->storage->txn_scope_guard;
9c6d6d93 300
de404241 301 MULTICREATE_DEBUG and warn "MC $self pre-reconstructing $relname $rel_obj\n";
e0cdf2cb 302
de404241 303 my $them = { %{$rel_obj->{_relationship_data} || {} }, $rel_obj->get_inflated_columns };
8cfe052c 304 my $re = $self->result_source
305 ->related_source($relname)
306 ->resultset
307 ->find_or_create($them);
d4fe33d0 308
de404241 309 %{$rel_obj} = %{$re};
d4fe33d0 310 $self->{_rel_in_storage}{$relname} = 1;
33dd4e80 311 }
d4fe33d0 312
313 $self->set_from_related($relname, $rel_obj);
314 delete $related_stuff{$relname};
315 }
316
317 # start a transaction here if not started yet and there is more stuff
318 # to insert after us
319 if (keys %related_stuff) {
320 $rollback_guard ||= $source->storage->txn_scope_guard
33dd4e80 321 }
6e399b4f 322
09e1f723 323 MULTICREATE_DEBUG and do {
324 no warnings 'uninitialized';
325 warn "MC $self inserting (".join(', ', $self->get_columns).")\n";
326 };
ef5f6b0a 327 my $updated_cols = $source->storage->insert($source, { $self->get_columns });
645de900 328 foreach my $col (keys %$updated_cols) {
329 $self->store_column($col, $updated_cols->{$col});
330 }
ac8e89d7 331
332 ## PK::Auto
3fda409f 333 my @auto_pri = grep {
d4fe33d0 334 (not defined $self->get_column($_))
335 ||
336 (ref($self->get_column($_)) eq 'SCALAR')
3fda409f 337 } $self->primary_columns;
338
339 if (@auto_pri) {
e0cdf2cb 340 MULTICREATE_DEBUG and warn "MC $self fetching missing PKs ".join(', ', @auto_pri)."\n";
ac8e89d7 341 my $storage = $self->result_source->storage;
342 $self->throw_exception( "Missing primary key but Storage doesn't support last_insert_id" )
343 unless $storage->can('last_insert_id');
3fda409f 344 my @ids = $storage->last_insert_id($self->result_source,@auto_pri);
345 $self->throw_exception( "Can't get last insert id" )
346 unless (@ids == @auto_pri);
347 $self->store_column($auto_pri[$_] => $ids[$_]) for 0 .. $#ids;
ac8e89d7 348 }
33dd4e80 349
e0cdf2cb 350
370f2ba2 351 $self->{_dirty_columns} = {};
352 $self->{related_resultsets} = {};
353
d4fe33d0 354 foreach my $relname (keys %related_stuff) {
31c3800e 355 next unless $source->has_relationship ($relname);
356
357 my @cands = ref $related_stuff{$relname} eq 'ARRAY'
358 ? @{$related_stuff{$relname}}
359 : $related_stuff{$relname}
360 ;
d4fe33d0 361
31c3800e 362 if (@cands
363 && Scalar::Util::blessed($cands[0])
364 && $cands[0]->isa('DBIx::Class::Row')
365 ) {
d4fe33d0 366 my $reverse = $source->reverse_relationship_info($relname);
367 foreach my $obj (@cands) {
368 $obj->set_from_related($_, $self) for keys %$reverse;
369 my $them = { %{$obj->{_relationship_data} || {} }, $obj->get_inflated_columns };
370 if ($self->__their_pk_needs_us($relname, $them)) {
371 if (exists $self->{_ignore_at_insert}{$relname}) {
372 MULTICREATE_DEBUG and warn "MC $self skipping post-insert on $relname";
370f2ba2 373 } else {
d4fe33d0 374 MULTICREATE_DEBUG and warn "MC $self re-creating $relname $obj";
375 my $re = $self->result_source
376 ->related_source($relname)
377 ->resultset
378 ->create($them);
379 %{$obj} = %{$re};
380 MULTICREATE_DEBUG and warn "MC $self new $relname $obj";
370f2ba2 381 }
d4fe33d0 382 } else {
383 MULTICREATE_DEBUG and warn "MC $self post-inserting $obj";
384 $obj->insert();
8222f722 385 }
33dd4e80 386 }
387 }
388 }
33dd4e80 389
7624b19f 390 $self->in_storage(1);
d4fe33d0 391 delete $self->{_orig_ident};
392 delete $self->{_ignore_at_insert};
393 $rollback_guard->commit if $rollback_guard;
394
7624b19f 395 return $self;
396}
397
8091aa91 398=head2 in_storage
7624b19f 399
a2531bf2 400 $row->in_storage; # Get value
401 $row->in_storage(1); # Set value
402
403=over
404
405=item Arguments: none or 1|0
406
407=item Returns: 1|0
408
409=back
7624b19f 410
e91e756c 411Indicates whether the object exists as a row in the database or
412not. This is set to true when L<DBIx::Class::ResultSet/find>,
413L<DBIx::Class::ResultSet/create> or L<DBIx::Class::ResultSet/insert>
b6d347e0 414are used.
e91e756c 415
416Creating a row object using L<DBIx::Class::ResultSet/new>, or calling
417L</delete> on one, sets it to false.
7624b19f 418
419=cut
420
421sub in_storage {
422 my ($self, $val) = @_;
423 $self->{_in_storage} = $val if @_ > 1;
63bb9738 424 return $self->{_in_storage} ? 1 : 0;
7624b19f 425}
426
8091aa91 427=head2 update
7624b19f 428
a2531bf2 429 $row->update(\%columns?)
430
431=over
7624b19f 432
a2531bf2 433=item Arguments: none or a hashref
7624b19f 434
a2531bf2 435=item Returns: The Row object
436
437=back
438
439Throws an exception if the row object is not yet in the database,
440according to L</in_storage>.
441
442This method issues an SQL UPDATE query to commit any changes to the
443object to the database if required.
444
445Also takes an optional hashref of C<< column_name => value> >> pairs
446to update on the object first. Be aware that the hashref will be
447passed to C<set_inflated_columns>, which might edit it in place, so
448don't rely on it being the same after a call to C<update>. If you
449need to preserve the hashref, it is sufficient to pass a shallow copy
450to C<update>, e.g. ( { %{ $href } } )
d5d833d9 451
05d1bc9c 452If the values passed or any of the column values set on the object
48580715 453contain scalar references, e.g.:
05d1bc9c 454
a2531bf2 455 $row->last_modified(\'NOW()');
05d1bc9c 456 # OR
a2531bf2 457 $row->update({ last_modified => \'NOW()' });
05d1bc9c 458
459The update will pass the values verbatim into SQL. (See
460L<SQL::Abstract> docs). The values in your Row object will NOT change
461as a result of the update call, if you want the object to be updated
462with the actual values from the database, call L</discard_changes>
463after the update.
464
a2531bf2 465 $row->update()->discard_changes();
466
467To determine before calling this method, which column values have
468changed and will be updated, call L</get_dirty_columns>.
469
470To check if any columns will be updated, call L</is_changed>.
471
472To force a column to be updated, call L</make_column_dirty> before
473this method.
05d1bc9c 474
7624b19f 475=cut
476
477sub update {
478 my ($self, $upd) = @_;
701da8c4 479 $self->throw_exception( "Not in database" ) unless $self->in_storage;
4b12b3c2 480 my $ident_cond = $self->ident_condition;
481 $self->throw_exception("Cannot safely update a row in a PK-less table")
482 if ! keys %$ident_cond;
6e399b4f 483
bacf6f12 484 $self->set_inflated_columns($upd) if $upd;
5a9e0e60 485 my %to_update = $self->get_dirty_columns;
486 return $self unless keys %to_update;
88cb6a1d 487 my $rows = $self->result_source->storage->update(
f4afcd5d 488 $self->result_source, \%to_update,
489 $self->{_orig_ident} || $ident_cond
490 );
7624b19f 491 if ($rows == 0) {
701da8c4 492 $self->throw_exception( "Can't update ${self}: row not found" );
7624b19f 493 } elsif ($rows > 1) {
701da8c4 494 $self->throw_exception("Can't update ${self}: updated more than one row");
7624b19f 495 }
496 $self->{_dirty_columns} = {};
64acc2bc 497 $self->{related_resultsets} = {};
729b29ae 498 undef $self->{_orig_ident};
7624b19f 499 return $self;
500}
501
8091aa91 502=head2 delete
7624b19f 503
a2531bf2 504 $row->delete
505
506=over
507
508=item Arguments: none
7624b19f 509
a2531bf2 510=item Returns: The Row object
511
512=back
513
514Throws an exception if the object is not in the database according to
515L</in_storage>. Runs an SQL DELETE statement using the primary key
516values to locate the row.
517
518The object is still perfectly usable, but L</in_storage> will
ea36f4e4 519now return 0 and the object must be reinserted using L</insert>
b6d347e0 520before it can be used to L</update> the row again.
a2531bf2 521
522If you delete an object in a class with a C<has_many> relationship, an
523attempt is made to delete all the related objects as well. To turn
524this behaviour off, pass C<< cascade_delete => 0 >> in the C<$attr>
525hashref of the relationship, see L<DBIx::Class::Relationship>. Any
526database-level cascade or restrict will take precedence over a
281e677e 527DBIx-Class-based cascading delete, since DBIx-Class B<deletes the
528main row first> and only then attempts to delete any remaining related
529rows.
a2531bf2 530
b1d16ffd 531If you delete an object within a txn_do() (see L<DBIx::Class::Storage/txn_do>)
532and the transaction subsequently fails, the row object will remain marked as
533not being in storage. If you know for a fact that the object is still in
534storage (i.e. by inspecting the cause of the transaction's failure), you can
535use C<< $obj->in_storage(1) >> to restore consistency between the object and
536the database. This would allow a subsequent C<< $obj->delete >> to work
537as expected.
538
a2531bf2 539See also L<DBIx::Class::ResultSet/delete>.
7624b19f 540
541=cut
542
543sub delete {
544 my $self = shift;
545 if (ref $self) {
701da8c4 546 $self->throw_exception( "Not in database" ) unless $self->in_storage;
728e60a3 547 my $ident_cond = $self->{_orig_ident} || $self->ident_condition;
4b12b3c2 548 $self->throw_exception("Cannot safely delete a row in a PK-less table")
549 if ! keys %$ident_cond;
e0f56292 550 foreach my $column (keys %$ident_cond) {
75d07914 551 $self->throw_exception("Can't delete the object unless it has loaded the primary keys")
552 unless exists $self->{_column_data}{$column};
e0f56292 553 }
88cb6a1d 554 $self->result_source->storage->delete(
7af8b477 555 $self->result_source, $ident_cond);
7624b19f 556 $self->in_storage(undef);
7624b19f 557 } else {
701da8c4 558 $self->throw_exception("Can't do class delete without a ResultSource instance")
097d3227 559 unless $self->can('result_source_instance');
aeb1bf75 560 my $attrs = @_ > 1 && ref $_[$#_] eq 'HASH' ? { %{pop(@_)} } : {};
561 my $query = ref $_[0] eq 'HASH' ? $_[0] : {@_};
097d3227 562 $self->result_source_instance->resultset->search(@_)->delete;
7624b19f 563 }
564 return $self;
565}
566
8091aa91 567=head2 get_column
7624b19f 568
a2531bf2 569 my $val = $row->get_column($col);
570
571=over
572
573=item Arguments: $columnname
574
575=item Returns: The value of the column
576
577=back
578
579Throws an exception if the column name given doesn't exist according
580to L</has_column>.
7624b19f 581
e91e756c 582Returns a raw column value from the row object, if it has already
583been fetched from the database or set by an accessor.
584
585If an L<inflated value|DBIx::Class::InflateColumn> has been set, it
586will be deflated and returned.
7624b19f 587
ea36f4e4 588Note that if you used the C<columns> or the C<select/as>
589L<search attributes|DBIx::Class::ResultSet/ATTRIBUTES> on the resultset from
590which C<$row> was derived, and B<did not include> C<$columnname> in the list,
591this method will return C<undef> even if the database contains some value.
592
a2531bf2 593To retrieve all loaded column values as a hash, use L</get_columns>.
594
7624b19f 595=cut
596
597sub get_column {
598 my ($self, $column) = @_;
701da8c4 599 $self->throw_exception( "Can't fetch data as class method" ) unless ref $self;
aeb1bf75 600 return $self->{_column_data}{$column} if exists $self->{_column_data}{$column};
61a622ee 601 if (exists $self->{_inflated_column}{$column}) {
602 return $self->store_column($column,
b6d347e0 603 $self->_deflated_column($column, $self->{_inflated_column}{$column}));
61a622ee 604 }
701da8c4 605 $self->throw_exception( "No such column '${column}'" ) unless $self->has_column($column);
7624b19f 606 return undef;
607}
608
9b83fccd 609=head2 has_column_loaded
610
a2531bf2 611 if ( $row->has_column_loaded($col) ) {
9b83fccd 612 print "$col has been loaded from db";
613 }
614
a2531bf2 615=over
616
617=item Arguments: $columnname
618
619=item Returns: 0|1
620
621=back
622
9b83fccd 623Returns a true value if the column value has been loaded from the
624database (or set locally).
625
626=cut
627
def81720 628sub has_column_loaded {
629 my ($self, $column) = @_;
630 $self->throw_exception( "Can't call has_column data as class method" ) unless ref $self;
61a622ee 631 return 1 if exists $self->{_inflated_column}{$column};
aeb1bf75 632 return exists $self->{_column_data}{$column};
def81720 633}
634
8091aa91 635=head2 get_columns
076a6864 636
a2531bf2 637 my %data = $row->get_columns;
638
639=over
640
641=item Arguments: none
076a6864 642
a2531bf2 643=item Returns: A hash of columnname, value pairs.
644
645=back
646
647Returns all loaded column data as a hash, containing raw values. To
648get just one value for a particular column, use L</get_column>.
076a6864 649
c0a171bf 650See L</get_inflated_columns> to get the inflated values.
651
076a6864 652=cut
653
654sub get_columns {
655 my $self = shift;
61a622ee 656 if (exists $self->{_inflated_column}) {
657 foreach my $col (keys %{$self->{_inflated_column}}) {
658 $self->store_column($col, $self->_deflated_column($col, $self->{_inflated_column}{$col}))
c4a30d56 659 unless exists $self->{_column_data}{$col};
61a622ee 660 }
661 }
cb5f2eea 662 return %{$self->{_column_data}};
d7156e50 663}
664
665=head2 get_dirty_columns
666
a2531bf2 667 my %data = $row->get_dirty_columns;
668
669=over
670
671=item Arguments: none
d7156e50 672
a2531bf2 673=item Returns: A hash of column, value pairs
674
675=back
676
677Only returns the column, value pairs for those columns that have been
678changed on this object since the last L</update> or L</insert> call.
679
680See L</get_columns> to fetch all column/value pairs.
d7156e50 681
682=cut
683
684sub get_dirty_columns {
685 my $self = shift;
686 return map { $_ => $self->{_column_data}{$_} }
687 keys %{$self->{_dirty_columns}};
076a6864 688}
689
6dbea98e 690=head2 make_column_dirty
691
a2531bf2 692 $row->make_column_dirty($col)
693
694=over
695
696=item Arguments: $columnname
697
698=item Returns: undefined
699
700=back
701
702Throws an exception if the column does not exist.
703
704Marks a column as having been changed regardless of whether it has
b6d347e0 705really changed.
6dbea98e 706
707=cut
708sub make_column_dirty {
709 my ($self, $column) = @_;
710
711 $self->throw_exception( "No such column '${column}'" )
712 unless exists $self->{_column_data}{$column} || $self->has_column($column);
497d874a 713
b6d347e0 714 # the entire clean/dirty code relies on exists, not on true/false
497d874a 715 return 1 if exists $self->{_dirty_columns}{$column};
716
6dbea98e 717 $self->{_dirty_columns}{$column} = 1;
497d874a 718
719 # if we are just now making the column dirty, and if there is an inflated
720 # value, force it over the deflated one
721 if (exists $self->{_inflated_column}{$column}) {
722 $self->store_column($column,
723 $self->_deflated_column(
724 $column, $self->{_inflated_column}{$column}
725 )
726 );
727 }
6dbea98e 728}
729
ba4a6453 730=head2 get_inflated_columns
731
e91e756c 732 my %inflated_data = $obj->get_inflated_columns;
ba4a6453 733
a2531bf2 734=over
735
736=item Arguments: none
737
738=item Returns: A hash of column, object|value pairs
739
740=back
741
742Returns a hash of all column keys and associated values. Values for any
743columns set to use inflation will be inflated and returns as objects.
744
745See L</get_columns> to get the uninflated values.
746
747See L<DBIx::Class::InflateColumn> for how to setup inflation.
ba4a6453 748
749=cut
750
751sub get_inflated_columns {
752 my $self = shift;
d61b2132 753
754 my %loaded_colinfo = (map
755 { $_ => $self->column_info($_) }
756 (grep { $self->has_column_loaded($_) } $self->columns)
757 );
758
759 my %inflated;
760 for my $col (keys %loaded_colinfo) {
9c042209 761 if (exists $loaded_colinfo{$col}{accessor}) {
762 my $acc = $loaded_colinfo{$col}{accessor};
763 $inflated{$col} = $self->$acc if defined $acc;
d61b2132 764 }
765 else {
766 $inflated{$col} = $self->$col;
767 }
768 }
769
770 # return all loaded columns with the inflations overlayed on top
771 return ($self->get_columns, %inflated);
ba4a6453 772}
773
ca8a1270 774sub _is_column_numeric {
0bb1a52f 775 my ($self, $column) = @_;
776 my $colinfo = $self->column_info ($column);
777
778 # cache for speed (the object may *not* have a resultsource instance)
779 if (not defined $colinfo->{is_numeric} && $self->_source_handle) {
780 $colinfo->{is_numeric} =
781 $self->result_source->schema->storage->is_datatype_numeric ($colinfo->{data_type})
782 ? 1
783 : 0
784 ;
785 }
786
787 return $colinfo->{is_numeric};
788}
789
8091aa91 790=head2 set_column
7624b19f 791
a2531bf2 792 $row->set_column($col => $val);
793
794=over
795
796=item Arguments: $columnname, $value
797
798=item Returns: $value
799
800=back
7624b19f 801
e91e756c 802Sets a raw column value. If the new value is different from the old one,
a2531bf2 803the column is marked as dirty for when you next call L</update>.
7624b19f 804
ea36f4e4 805If passed an object or reference as a value, this method will happily
806attempt to store it, and a later L</insert> or L</update> will try and
a2531bf2 807stringify/numify as appropriate. To set an object to be deflated
808instead, see L</set_inflated_columns>.
e91e756c 809
7624b19f 810=cut
811
812sub set_column {
1d0057bd 813 my ($self, $column, $new_value) = @_;
814
729b29ae 815 $self->{_orig_ident} ||= $self->ident_condition;
1d0057bd 816 my $old_value = $self->get_column($column);
817
b236052f 818 $new_value = $self->store_column($column, $new_value);
8f9eff75 819
820 my $dirty;
cad745b2 821 if (!$self->in_storage) { # no point tracking dirtyness on uninserted data
822 $dirty = 1;
823 }
824 elsif (defined $old_value xor defined $new_value) {
8f9eff75 825 $dirty = 1;
826 }
827 elsif (not defined $old_value) { # both undef
828 $dirty = 0;
829 }
830 elsif ($old_value eq $new_value) {
831 $dirty = 0;
832 }
833 else { # do a numeric comparison if datatype allows it
ca8a1270 834 if ($self->_is_column_numeric($column)) {
0bad1823 835 $dirty = $old_value != $new_value;
8f9eff75 836 }
837 else {
838 $dirty = 1;
839 }
840 }
841
842 # sadly the update code just checks for keys, not for their value
843 $self->{_dirty_columns}{$column} = 1 if $dirty;
e60dc79f 844
845 # XXX clear out the relation cache for this column
846 delete $self->{related_resultsets}{$column};
847
1d0057bd 848 return $new_value;
7624b19f 849}
850
8091aa91 851=head2 set_columns
076a6864 852
a2531bf2 853 $row->set_columns({ $col => $val, ... });
854
b6d347e0 855=over
076a6864 856
a2531bf2 857=item Arguments: \%columndata
858
859=item Returns: The Row object
860
861=back
862
863Sets multiple column, raw value pairs at once.
864
865Works as L</set_column>.
076a6864 866
867=cut
868
869sub set_columns {
870 my ($self,$data) = @_;
a2ca474b 871 foreach my $col (keys %$data) {
872 $self->set_column($col,$data->{$col});
076a6864 873 }
c01ab172 874 return $self;
076a6864 875}
876
bacf6f12 877=head2 set_inflated_columns
878
a2531bf2 879 $row->set_inflated_columns({ $col => $val, $relname => $obj, ... });
880
881=over
882
883=item Arguments: \%columndata
884
885=item Returns: The Row object
886
887=back
888
889Sets more than one column value at once. Any inflated values are
b6d347e0 890deflated and the raw values stored.
bacf6f12 891
a2531bf2 892Any related values passed as Row objects, using the relation name as a
893key, are reduced to the appropriate foreign key values and stored. If
894instead of related row objects, a hashref of column, value data is
895passed, will create the related object first then store.
896
897Will even accept arrayrefs of data as a value to a
898L<DBIx::Class::Relationship/has_many> key, and create the related
899objects if necessary.
900
c1300297 901Be aware that the input hashref might be edited in place, so don't rely
a2531bf2 902on it being the same after a call to C<set_inflated_columns>. If you
903need to preserve the hashref, it is sufficient to pass a shallow copy
904to C<set_inflated_columns>, e.g. ( { %{ $href } } )
905
906See also L<DBIx::Class::Relationship::Base/set_from_related>.
bacf6f12 907
908=cut
909
910sub set_inflated_columns {
911 my ( $self, $upd ) = @_;
912 foreach my $key (keys %$upd) {
913 if (ref $upd->{$key}) {
914 my $info = $self->relationship_info($key);
b82c8a28 915 my $acc_type = $info->{attrs}{accessor} || '';
916 if ($acc_type eq 'single') {
bacf6f12 917 my $rel = delete $upd->{$key};
918 $self->set_from_related($key => $rel);
a7be8807 919 $self->{_relationship_data}{$key} = $rel;
bacf6f12 920 }
b82c8a28 921 elsif ($acc_type eq 'multi') {
922 $self->throw_exception(
923 "Recursive update is not supported over relationships of type '$acc_type' ($key)"
924 );
925 }
926 elsif ($self->has_column($key) && exists $self->column_info($key)->{_inflate_info}) {
a7be8807 927 $self->set_inflated_column($key, delete $upd->{$key});
bacf6f12 928 }
929 }
930 }
b6d347e0 931 $self->set_columns($upd);
bacf6f12 932}
933
8091aa91 934=head2 copy
076a6864 935
936 my $copy = $orig->copy({ change => $to, ... });
937
a2531bf2 938=over
939
940=item Arguments: \%replacementdata
941
942=item Returns: The Row object copy
943
944=back
945
946Inserts a new row into the database, as a copy of the original
947object. If a hashref of replacement data is supplied, these will take
ce0893e0 948precedence over data in the original. Also any columns which have
949the L<column info attribute|DBIx::Class::ResultSource/add_columns>
950C<< is_auto_increment => 1 >> are explicitly removed before the copy,
951so that the database can insert its own autoincremented values into
952the new object.
a2531bf2 953
f928c965 954Relationships will be followed by the copy procedure B<only> if the
48580715 955relationship specifies a true value for its
f928c965 956L<cascade_copy|DBIx::Class::Relationship::Base> attribute. C<cascade_copy>
957is set by default on C<has_many> relationships and unset on all others.
076a6864 958
959=cut
960
c01ab172 961sub copy {
962 my ($self, $changes) = @_;
333cce60 963 $changes ||= {};
fde6e28e 964 my $col_data = { %{$self->{_column_data}} };
965 foreach my $col (keys %$col_data) {
966 delete $col_data->{$col}
967 if $self->result_source->column_info($col)->{is_auto_increment};
968 }
04786a4c 969
970 my $new = { _column_data => $col_data };
971 bless $new, ref $self;
972
83419ec6 973 $new->result_source($self->result_source);
bacf6f12 974 $new->set_inflated_columns($changes);
333cce60 975 $new->insert;
35688220 976
b6d347e0 977 # Its possible we'll have 2 relations to the same Source. We need to make
48580715 978 # sure we don't try to insert the same row twice else we'll violate unique
35688220 979 # constraints
980 my $rels_copied = {};
981
333cce60 982 foreach my $rel ($self->result_source->relationships) {
983 my $rel_info = $self->result_source->relationship_info($rel);
35688220 984
985 next unless $rel_info->{attrs}{cascade_copy};
b6d347e0 986
6d0ee587 987 my $resolved = $self->result_source->_resolve_condition(
35688220 988 $rel_info->{cond}, $rel, $new
989 );
990
991 my $copied = $rels_copied->{ $rel_info->{source} } ||= {};
992 foreach my $related ($self->search_related($rel)) {
993 my $id_str = join("\0", $related->id);
994 next if $copied->{$id_str};
995 $copied->{$id_str} = 1;
996 my $rel_copy = $related->copy($resolved);
333cce60 997 }
b6d347e0 998
333cce60 999 }
2c4c67b6 1000 return $new;
c01ab172 1001}
1002
8091aa91 1003=head2 store_column
7624b19f 1004
a2531bf2 1005 $row->store_column($col => $val);
7624b19f 1006
a2531bf2 1007=over
1008
1009=item Arguments: $columnname, $value
1010
ea36f4e4 1011=item Returns: The value sent to storage
a2531bf2 1012
1013=back
1014
1015Set a raw value for a column without marking it as changed. This
1016method is used internally by L</set_column> which you should probably
1017be using.
1018
1019This is the lowest level at which data is set on a row object,
1020extend this method to catch all data setting methods.
7624b19f 1021
1022=cut
1023
1024sub store_column {
1025 my ($self, $column, $value) = @_;
75d07914 1026 $self->throw_exception( "No such column '${column}'" )
d7156e50 1027 unless exists $self->{_column_data}{$column} || $self->has_column($column);
75d07914 1028 $self->throw_exception( "set_column called for ${column} without value" )
7624b19f 1029 if @_ < 3;
1030 return $self->{_column_data}{$column} = $value;
1031}
1032
b52e9bf8 1033=head2 inflate_result
1034
c01ab172 1035 Class->inflate_result($result_source, \%me, \%prefetch?)
b52e9bf8 1036
a2531bf2 1037=over
1038
1039=item Arguments: $result_source, \%columndata, \%prefetcheddata
1040
1041=item Returns: A Row object
1042
1043=back
1044
1045All L<DBIx::Class::ResultSet> methods that retrieve data from the
1046database and turn it into row objects call this method.
1047
1048Extend this method in your Result classes to hook into this process,
1049for example to rebless the result into a different class.
1050
1051Reblessing can also be done more easily by setting C<result_class> in
1052your Result class. See L<DBIx::Class::ResultSource/result_class>.
b52e9bf8 1053
db2b2eb6 1054Different types of results can also be created from a particular
1055L<DBIx::Class::ResultSet>, see L<DBIx::Class::ResultSet/result_class>.
1056
b52e9bf8 1057=cut
1058
1059sub inflate_result {
c01ab172 1060 my ($class, $source, $me, $prefetch) = @_;
aec3eff1 1061
1062 my ($source_handle) = $source;
1063
1064 if ($source->isa('DBIx::Class::ResultSourceHandle')) {
13d06949 1065 $source = $source_handle->resolve
1066 }
1067 else {
1068 $source_handle = $source->handle
aec3eff1 1069 }
1070
04786a4c 1071 my $new = {
aec3eff1 1072 _source_handle => $source_handle,
04786a4c 1073 _column_data => $me,
04786a4c 1074 };
1075 bless $new, (ref $class || $class);
1076
64acc2bc 1077 foreach my $pre (keys %{$prefetch||{}}) {
35c77aa3 1078
13d06949 1079 my $pre_source = $source->related_source($pre)
1080 or $class->throw_exception("Can't prefetch non-existent relationship ${pre}");
1081
1082 my $accessor = $source->relationship_info($pre)->{attrs}{accessor}
1083 or $class->throw_exception("No accessor for prefetched $pre");
35c77aa3 1084
13d06949 1085 my @pre_vals;
1086 if (ref $prefetch->{$pre}[0] eq 'ARRAY') {
1087 @pre_vals = @{$prefetch->{$pre}};
1088 }
1089 elsif ($accessor eq 'multi') {
1090 $class->throw_exception("Implicit prefetch (via select/columns) not supported with accessor 'multi'");
1091 }
1092 else {
1093 @pre_vals = $prefetch->{$pre};
1094 }
1095
1096 my @pre_objects;
1097 for my $me_pref (@pre_vals) {
1098
1099 # FIXME - this should not be necessary
35c77aa3 1100 # the collapser currently *could* return bogus elements with all
1101 # columns set to undef
1102 my $has_def;
1103 for (values %{$me_pref->[0]}) {
1104 if (defined $_) {
1105 $has_def++;
1106 last;
1107 }
a86b1efe 1108 }
35c77aa3 1109 next unless $has_def;
1110
1111 push @pre_objects, $pre_source->result_class->inflate_result(
1112 $pre_source, @$me_pref
1113 );
13d06949 1114 }
b82c8a28 1115
13d06949 1116 if ($accessor eq 'single') {
1117 $new->{_relationship_data}{$pre} = $pre_objects[0];
b52e9bf8 1118 }
13d06949 1119 elsif ($accessor eq 'filter') {
1120 $new->{_inflated_column}{$pre} = $pre_objects[0];
1121 }
1122
1123 $new->related_resultset($pre)->set_cache(\@pre_objects);
b52e9bf8 1124 }
35c77aa3 1125
1126 $new->in_storage (1);
7624b19f 1127 return $new;
1128}
1129
9b465d00 1130=head2 update_or_insert
7624b19f 1131
a2531bf2 1132 $row->update_or_insert
1133
1134=over
7624b19f 1135
a2531bf2 1136=item Arguments: none
1137
1138=item Returns: Result of update or insert operation
1139
1140=back
1141
1142L</Update>s the object if it's already in the database, according to
1143L</in_storage>, else L</insert>s it.
7624b19f 1144
9b83fccd 1145=head2 insert_or_update
1146
1147 $obj->insert_or_update
1148
1149Alias for L</update_or_insert>
1150
7624b19f 1151=cut
1152
370f2ba2 1153sub insert_or_update { shift->update_or_insert(@_) }
1154
9b465d00 1155sub update_or_insert {
7624b19f 1156 my $self = shift;
1157 return ($self->in_storage ? $self->update : $self->insert);
1158}
1159
8091aa91 1160=head2 is_changed
7624b19f 1161
a2531bf2 1162 my @changed_col_names = $row->is_changed();
1163 if ($row->is_changed()) { ... }
1164
1165=over
7624b19f 1166
a2531bf2 1167=item Arguments: none
1168
1169=item Returns: 0|1 or @columnnames
1170
1171=back
1172
1173In list context returns a list of columns with uncommited changes, or
9b83fccd 1174in scalar context returns a true value if there are uncommitted
1175changes.
1176
7624b19f 1177=cut
1178
1179sub is_changed {
1180 return keys %{shift->{_dirty_columns} || {}};
1181}
228dbcb4 1182
1183=head2 is_column_changed
1184
a2531bf2 1185 if ($row->is_column_changed('col')) { ... }
1186
1187=over
1188
1189=item Arguments: $columname
1190
1191=item Returns: 0|1
1192
1193=back
228dbcb4 1194
9b83fccd 1195Returns a true value if the column has uncommitted changes.
1196
228dbcb4 1197=cut
1198
1199sub is_column_changed {
1200 my( $self, $col ) = @_;
1201 return exists $self->{_dirty_columns}->{$col};
1202}
7624b19f 1203
097d3227 1204=head2 result_source
1205
a2531bf2 1206 my $resultsource = $row->result_source;
1207
1208=over
1209
1210=item Arguments: none
097d3227 1211
a2531bf2 1212=item Returns: a ResultSource instance
1213
1214=back
1215
1216Accessor to the L<DBIx::Class::ResultSource> this object was created from.
87c4e602 1217
aec3eff1 1218=cut
1219
1220sub result_source {
1221 my $self = shift;
1222
1223 if (@_) {
1224 $self->_source_handle($_[0]->handle);
1225 } else {
1226 $self->_source_handle->resolve;
1227 }
1228}
1229
9b83fccd 1230=head2 register_column
27f01d1f 1231
9b83fccd 1232 $column_info = { .... };
1233 $class->register_column($column_name, $column_info);
27f01d1f 1234
a2531bf2 1235=over
1236
1237=item Arguments: $columnname, \%columninfo
1238
1239=item Returns: undefined
1240
1241=back
1242
9b83fccd 1243Registers a column on the class. If the column_info has an 'accessor'
1244key, creates an accessor named after the value if defined; if there is
1245no such key, creates an accessor with the same name as the column
1f23a877 1246
9b83fccd 1247The column_info attributes are described in
1248L<DBIx::Class::ResultSource/add_columns>
1f23a877 1249
097d3227 1250=cut
1251
1f23a877 1252sub register_column {
1253 my ($class, $col, $info) = @_;
91b0fbd7 1254 my $acc = $col;
1255 if (exists $info->{accessor}) {
1256 return unless defined $info->{accessor};
1257 $acc = [ $info->{accessor}, $col ];
1258 }
1259 $class->mk_group_accessors('column' => $acc);
1f23a877 1260}
1261
a2531bf2 1262=head2 get_from_storage
1263
1264 my $copy = $row->get_from_storage($attrs)
1265
1266=over
b9b4e52f 1267
a2531bf2 1268=item Arguments: \%attrs
b9b4e52f 1269
a2531bf2 1270=item Returns: A Row object
1271
1272=back
1273
1274Fetches a fresh copy of the Row object from the database and returns it.
1275
1276If passed the \%attrs argument, will first apply these attributes to
1277the resultset used to find the row.
1278
1279This copy can then be used to compare to an existing row object, to
1280determine if any changes have been made in the database since it was
1281created.
1282
1283To just update your Row object with any latest changes from the
1284database, use L</discard_changes> instead.
1285
1286The \%attrs argument should be compatible with
1287L<DBIx::Class::ResultSet/ATTRIBUTES>.
7e38d850 1288
b9b4e52f 1289=cut
1290
a737512c 1291sub get_from_storage {
b9b4e52f 1292 my $self = shift @_;
7e38d850 1293 my $attrs = shift @_;
7e38d850 1294 my $resultset = $self->result_source->resultset;
b6d347e0 1295
7e38d850 1296 if(defined $attrs) {
bbd107cf 1297 $resultset = $resultset->search(undef, $attrs);
7e38d850 1298 }
b6d347e0 1299
728e60a3 1300 return $resultset->find($self->{_orig_ident} || $self->ident_condition);
b9b4e52f 1301}
701da8c4 1302
bbd107cf 1303=head2 discard_changes ($attrs)
1304
1305Re-selects the row from the database, losing any changes that had
1306been made.
1307
1308This method can also be used to refresh from storage, retrieving any
1309changes made since the row was last read from storage.
1310
1311$attrs is expected to be a hashref of attributes suitable for passing as the
1312second argument to $resultset->search($cond, $attrs);
1313
1314=cut
1315
1316sub discard_changes {
1317 my ($self, $attrs) = @_;
1318 delete $self->{_dirty_columns};
1319 return unless $self->in_storage; # Don't reload if we aren't real!
1320
1321 # add a replication default to read from the master only
1322 $attrs = { force_pool => 'master', %{$attrs||{}} };
1323
1324 if( my $current_storage = $self->get_from_storage($attrs)) {
1325
1326 # Set $self to the current.
1327 %$self = %$current_storage;
1328
1329 # Avoid a possible infinite loop with
1330 # sub DESTROY { $_[0]->discard_changes }
1331 bless $current_storage, 'Do::Not::Exist';
1332
1333 return $self;
1334 }
1335 else {
1336 $self->in_storage(0);
1337 return $self;
1338 }
1339}
1340
1341
5160b401 1342=head2 throw_exception
701da8c4 1343
a2531bf2 1344See L<DBIx::Class::Schema/throw_exception>.
701da8c4 1345
1346=cut
1347
1348sub throw_exception {
1349 my $self=shift;
1a58752c 1350
66cab05c 1351 if (ref $self && ref $self->result_source && $self->result_source->schema) {
1a58752c 1352 $self->result_source->schema->throw_exception(@_)
1353 }
1354 else {
1355 DBIx::Class::Exception->throw(@_);
701da8c4 1356 }
1357}
1358
33cf6616 1359=head2 id
1360
a2531bf2 1361 my @pk = $row->id;
1362
1363=over
1364
1365=item Arguments: none
1366
1367=item Returns: A list of primary key values
1368
1369=back
1370
33cf6616 1371Returns the primary key(s) for a row. Can't be called as a class method.
f7043881 1372Actually implemented in L<DBIx::Class::PK>
33cf6616 1373
1374=head2 discard_changes
1375
a2531bf2 1376 $row->discard_changes
1377
1378=over
1379
1380=item Arguments: none
1381
1382=item Returns: nothing (updates object in-place)
1383
1384=back
1385
1386Retrieves and sets the row object data from the database, losing any
1387local changes made.
33cf6616 1388
1389This method can also be used to refresh from storage, retrieving any
1390changes made since the row was last read from storage. Actually
f7043881 1391implemented in L<DBIx::Class::PK>
33cf6616 1392
071bbccb 1393Note: If you are using L<DBIx::Class::Storage::DBI::Replicated> as your
1394storage, please kept in mind that if you L</discard_changes> on a row that you
1395just updated or created, you should wrap the entire bit inside a transaction.
1396Otherwise you run the risk that you insert or update to the master database
1397but read from a replicant database that has not yet been updated from the
1398master. This will result in unexpected results.
1399
33cf6616 1400=cut
1401
7624b19f 14021;
1403
7624b19f 1404=head1 AUTHORS
1405
daec44b8 1406Matt S. Trout <mst@shadowcatsystems.co.uk>
7624b19f 1407
1408=head1 LICENSE
1409
1410You may distribute this code under the same terms as Perl itself.
1411
1412=cut