remove that code for non-pk autoincs from Row, move to ::DBI::InterBase
[dbsrgits/DBIx-Class-Historic.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
370f2ba2 350 $self->{_dirty_columns} = {};
351 $self->{related_resultsets} = {};
352
d4fe33d0 353 foreach my $relname (keys %related_stuff) {
31c3800e 354 next unless $source->has_relationship ($relname);
355
356 my @cands = ref $related_stuff{$relname} eq 'ARRAY'
357 ? @{$related_stuff{$relname}}
358 : $related_stuff{$relname}
359 ;
d4fe33d0 360
31c3800e 361 if (@cands
362 && Scalar::Util::blessed($cands[0])
363 && $cands[0]->isa('DBIx::Class::Row')
364 ) {
d4fe33d0 365 my $reverse = $source->reverse_relationship_info($relname);
366 foreach my $obj (@cands) {
367 $obj->set_from_related($_, $self) for keys %$reverse;
368 my $them = { %{$obj->{_relationship_data} || {} }, $obj->get_inflated_columns };
369 if ($self->__their_pk_needs_us($relname, $them)) {
370 if (exists $self->{_ignore_at_insert}{$relname}) {
371 MULTICREATE_DEBUG and warn "MC $self skipping post-insert on $relname";
370f2ba2 372 } else {
d4fe33d0 373 MULTICREATE_DEBUG and warn "MC $self re-creating $relname $obj";
374 my $re = $self->result_source
375 ->related_source($relname)
376 ->resultset
377 ->create($them);
378 %{$obj} = %{$re};
379 MULTICREATE_DEBUG and warn "MC $self new $relname $obj";
370f2ba2 380 }
d4fe33d0 381 } else {
382 MULTICREATE_DEBUG and warn "MC $self post-inserting $obj";
383 $obj->insert();
8222f722 384 }
33dd4e80 385 }
386 }
387 }
33dd4e80 388
7624b19f 389 $self->in_storage(1);
d4fe33d0 390 delete $self->{_orig_ident};
391 delete $self->{_ignore_at_insert};
392 $rollback_guard->commit if $rollback_guard;
393
7624b19f 394 return $self;
395}
396
8091aa91 397=head2 in_storage
7624b19f 398
a2531bf2 399 $row->in_storage; # Get value
400 $row->in_storage(1); # Set value
401
402=over
403
404=item Arguments: none or 1|0
405
406=item Returns: 1|0
407
408=back
7624b19f 409
e91e756c 410Indicates whether the object exists as a row in the database or
411not. This is set to true when L<DBIx::Class::ResultSet/find>,
412L<DBIx::Class::ResultSet/create> or L<DBIx::Class::ResultSet/insert>
b6d347e0 413are used.
e91e756c 414
415Creating a row object using L<DBIx::Class::ResultSet/new>, or calling
416L</delete> on one, sets it to false.
7624b19f 417
418=cut
419
420sub in_storage {
421 my ($self, $val) = @_;
422 $self->{_in_storage} = $val if @_ > 1;
63bb9738 423 return $self->{_in_storage} ? 1 : 0;
7624b19f 424}
425
8091aa91 426=head2 update
7624b19f 427
a2531bf2 428 $row->update(\%columns?)
429
430=over
7624b19f 431
a2531bf2 432=item Arguments: none or a hashref
7624b19f 433
a2531bf2 434=item Returns: The Row object
435
436=back
437
438Throws an exception if the row object is not yet in the database,
439according to L</in_storage>.
440
441This method issues an SQL UPDATE query to commit any changes to the
442object to the database if required.
443
444Also takes an optional hashref of C<< column_name => value> >> pairs
445to update on the object first. Be aware that the hashref will be
446passed to C<set_inflated_columns>, which might edit it in place, so
447don't rely on it being the same after a call to C<update>. If you
448need to preserve the hashref, it is sufficient to pass a shallow copy
449to C<update>, e.g. ( { %{ $href } } )
d5d833d9 450
05d1bc9c 451If the values passed or any of the column values set on the object
48580715 452contain scalar references, e.g.:
05d1bc9c 453
a2531bf2 454 $row->last_modified(\'NOW()');
05d1bc9c 455 # OR
a2531bf2 456 $row->update({ last_modified => \'NOW()' });
05d1bc9c 457
458The update will pass the values verbatim into SQL. (See
459L<SQL::Abstract> docs). The values in your Row object will NOT change
460as a result of the update call, if you want the object to be updated
461with the actual values from the database, call L</discard_changes>
462after the update.
463
a2531bf2 464 $row->update()->discard_changes();
465
466To determine before calling this method, which column values have
467changed and will be updated, call L</get_dirty_columns>.
468
469To check if any columns will be updated, call L</is_changed>.
470
471To force a column to be updated, call L</make_column_dirty> before
472this method.
05d1bc9c 473
7624b19f 474=cut
475
476sub update {
477 my ($self, $upd) = @_;
701da8c4 478 $self->throw_exception( "Not in database" ) unless $self->in_storage;
cf856357 479
480 my $ident_cond = $self->{_orig_ident} || $self->ident_condition;
481
482 $self->throw_exception('Unable to update a row with incomplete or no identity')
4b12b3c2 483 if ! keys %$ident_cond;
6e399b4f 484
bacf6f12 485 $self->set_inflated_columns($upd) if $upd;
5a9e0e60 486 my %to_update = $self->get_dirty_columns;
487 return $self unless keys %to_update;
88cb6a1d 488 my $rows = $self->result_source->storage->update(
cf856357 489 $self->result_source, \%to_update, $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} = {};
cf856357 498 delete $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;
cf856357 547
728e60a3 548 my $ident_cond = $self->{_orig_ident} || $self->ident_condition;
cf856357 549 $self->throw_exception('Unable to delete a row with incomplete or no identity')
4b12b3c2 550 if ! keys %$ident_cond;
cf856357 551
88cb6a1d 552 $self->result_source->storage->delete(
cf856357 553 $self->result_source, $ident_cond
554 );
555
556 delete $self->{_orig_ident};
7624b19f 557 $self->in_storage(undef);
cf856357 558 }
559 else {
701da8c4 560 $self->throw_exception("Can't do class delete without a ResultSource instance")
097d3227 561 unless $self->can('result_source_instance');
aeb1bf75 562 my $attrs = @_ > 1 && ref $_[$#_] eq 'HASH' ? { %{pop(@_)} } : {};
563 my $query = ref $_[0] eq 'HASH' ? $_[0] : {@_};
097d3227 564 $self->result_source_instance->resultset->search(@_)->delete;
7624b19f 565 }
566 return $self;
567}
568
8091aa91 569=head2 get_column
7624b19f 570
a2531bf2 571 my $val = $row->get_column($col);
572
573=over
574
575=item Arguments: $columnname
576
577=item Returns: The value of the column
578
579=back
580
581Throws an exception if the column name given doesn't exist according
582to L</has_column>.
7624b19f 583
e91e756c 584Returns a raw column value from the row object, if it has already
585been fetched from the database or set by an accessor.
586
587If an L<inflated value|DBIx::Class::InflateColumn> has been set, it
588will be deflated and returned.
7624b19f 589
ea36f4e4 590Note that if you used the C<columns> or the C<select/as>
591L<search attributes|DBIx::Class::ResultSet/ATTRIBUTES> on the resultset from
592which C<$row> was derived, and B<did not include> C<$columnname> in the list,
593this method will return C<undef> even if the database contains some value.
594
a2531bf2 595To retrieve all loaded column values as a hash, use L</get_columns>.
596
7624b19f 597=cut
598
599sub get_column {
600 my ($self, $column) = @_;
701da8c4 601 $self->throw_exception( "Can't fetch data as class method" ) unless ref $self;
aeb1bf75 602 return $self->{_column_data}{$column} if exists $self->{_column_data}{$column};
61a622ee 603 if (exists $self->{_inflated_column}{$column}) {
604 return $self->store_column($column,
b6d347e0 605 $self->_deflated_column($column, $self->{_inflated_column}{$column}));
61a622ee 606 }
701da8c4 607 $self->throw_exception( "No such column '${column}'" ) unless $self->has_column($column);
7624b19f 608 return undef;
609}
610
9b83fccd 611=head2 has_column_loaded
612
a2531bf2 613 if ( $row->has_column_loaded($col) ) {
9b83fccd 614 print "$col has been loaded from db";
615 }
616
a2531bf2 617=over
618
619=item Arguments: $columnname
620
621=item Returns: 0|1
622
623=back
624
9b83fccd 625Returns a true value if the column value has been loaded from the
626database (or set locally).
627
628=cut
629
def81720 630sub has_column_loaded {
631 my ($self, $column) = @_;
632 $self->throw_exception( "Can't call has_column data as class method" ) unless ref $self;
61a622ee 633 return 1 if exists $self->{_inflated_column}{$column};
aeb1bf75 634 return exists $self->{_column_data}{$column};
def81720 635}
636
8091aa91 637=head2 get_columns
076a6864 638
a2531bf2 639 my %data = $row->get_columns;
640
641=over
642
643=item Arguments: none
076a6864 644
a2531bf2 645=item Returns: A hash of columnname, value pairs.
646
647=back
648
649Returns all loaded column data as a hash, containing raw values. To
650get just one value for a particular column, use L</get_column>.
076a6864 651
c0a171bf 652See L</get_inflated_columns> to get the inflated values.
653
076a6864 654=cut
655
656sub get_columns {
657 my $self = shift;
61a622ee 658 if (exists $self->{_inflated_column}) {
659 foreach my $col (keys %{$self->{_inflated_column}}) {
660 $self->store_column($col, $self->_deflated_column($col, $self->{_inflated_column}{$col}))
c4a30d56 661 unless exists $self->{_column_data}{$col};
61a622ee 662 }
663 }
cb5f2eea 664 return %{$self->{_column_data}};
d7156e50 665}
666
667=head2 get_dirty_columns
668
a2531bf2 669 my %data = $row->get_dirty_columns;
670
671=over
672
673=item Arguments: none
d7156e50 674
a2531bf2 675=item Returns: A hash of column, value pairs
676
677=back
678
679Only returns the column, value pairs for those columns that have been
680changed on this object since the last L</update> or L</insert> call.
681
682See L</get_columns> to fetch all column/value pairs.
d7156e50 683
684=cut
685
686sub get_dirty_columns {
687 my $self = shift;
688 return map { $_ => $self->{_column_data}{$_} }
689 keys %{$self->{_dirty_columns}};
076a6864 690}
691
6dbea98e 692=head2 make_column_dirty
693
a2531bf2 694 $row->make_column_dirty($col)
695
696=over
697
698=item Arguments: $columnname
699
700=item Returns: undefined
701
702=back
703
704Throws an exception if the column does not exist.
705
706Marks a column as having been changed regardless of whether it has
b6d347e0 707really changed.
6dbea98e 708
709=cut
710sub make_column_dirty {
711 my ($self, $column) = @_;
712
713 $self->throw_exception( "No such column '${column}'" )
714 unless exists $self->{_column_data}{$column} || $self->has_column($column);
497d874a 715
b6d347e0 716 # the entire clean/dirty code relies on exists, not on true/false
497d874a 717 return 1 if exists $self->{_dirty_columns}{$column};
718
6dbea98e 719 $self->{_dirty_columns}{$column} = 1;
497d874a 720
721 # if we are just now making the column dirty, and if there is an inflated
722 # value, force it over the deflated one
723 if (exists $self->{_inflated_column}{$column}) {
724 $self->store_column($column,
725 $self->_deflated_column(
726 $column, $self->{_inflated_column}{$column}
727 )
728 );
729 }
6dbea98e 730}
731
ba4a6453 732=head2 get_inflated_columns
733
e91e756c 734 my %inflated_data = $obj->get_inflated_columns;
ba4a6453 735
a2531bf2 736=over
737
738=item Arguments: none
739
740=item Returns: A hash of column, object|value pairs
741
742=back
743
744Returns a hash of all column keys and associated values. Values for any
745columns set to use inflation will be inflated and returns as objects.
746
747See L</get_columns> to get the uninflated values.
748
749See L<DBIx::Class::InflateColumn> for how to setup inflation.
ba4a6453 750
751=cut
752
753sub get_inflated_columns {
754 my $self = shift;
d61b2132 755
756 my %loaded_colinfo = (map
757 { $_ => $self->column_info($_) }
758 (grep { $self->has_column_loaded($_) } $self->columns)
759 );
760
761 my %inflated;
762 for my $col (keys %loaded_colinfo) {
763 if (exists $loaded_colinfo{$col}{accessor}) {
764 my $acc = $loaded_colinfo{$col}{accessor};
9c042209 765 $inflated{$col} = $self->$acc if defined $acc;
d61b2132 766 }
767 else {
768 $inflated{$col} = $self->$col;
769 }
770 }
771
772 # return all loaded columns with the inflations overlayed on top
773 return ($self->get_columns, %inflated);
ba4a6453 774}
775
ca8a1270 776sub _is_column_numeric {
0bb1a52f 777 my ($self, $column) = @_;
778 my $colinfo = $self->column_info ($column);
779
780 # cache for speed (the object may *not* have a resultsource instance)
781 if (not defined $colinfo->{is_numeric} && $self->_source_handle) {
782 $colinfo->{is_numeric} =
783 $self->result_source->schema->storage->is_datatype_numeric ($colinfo->{data_type})
784 ? 1
785 : 0
786 ;
787 }
788
789 return $colinfo->{is_numeric};
790}
791
8091aa91 792=head2 set_column
7624b19f 793
a2531bf2 794 $row->set_column($col => $val);
795
796=over
797
798=item Arguments: $columnname, $value
799
800=item Returns: $value
801
802=back
7624b19f 803
e91e756c 804Sets a raw column value. If the new value is different from the old one,
a2531bf2 805the column is marked as dirty for when you next call L</update>.
7624b19f 806
ea36f4e4 807If passed an object or reference as a value, this method will happily
808attempt to store it, and a later L</insert> or L</update> will try and
a2531bf2 809stringify/numify as appropriate. To set an object to be deflated
810instead, see L</set_inflated_columns>.
e91e756c 811
7624b19f 812=cut
813
814sub set_column {
1d0057bd 815 my ($self, $column, $new_value) = @_;
816
cf856357 817 # if we can't get an ident condition on first try - mark the object as unidentifiable
818 $self->{_orig_ident} ||= (eval { $self->ident_condition }) || {};
1d0057bd 819
cf856357 820 my $old_value = $self->get_column($column);
b236052f 821 $new_value = $self->store_column($column, $new_value);
8f9eff75 822
823 my $dirty;
cad745b2 824 if (!$self->in_storage) { # no point tracking dirtyness on uninserted data
825 $dirty = 1;
826 }
827 elsif (defined $old_value xor defined $new_value) {
8f9eff75 828 $dirty = 1;
829 }
830 elsif (not defined $old_value) { # both undef
831 $dirty = 0;
832 }
833 elsif ($old_value eq $new_value) {
834 $dirty = 0;
835 }
836 else { # do a numeric comparison if datatype allows it
ca8a1270 837 if ($self->_is_column_numeric($column)) {
0bad1823 838 $dirty = $old_value != $new_value;
8f9eff75 839 }
840 else {
841 $dirty = 1;
842 }
843 }
844
845 # sadly the update code just checks for keys, not for their value
846 $self->{_dirty_columns}{$column} = 1 if $dirty;
e60dc79f 847
848 # XXX clear out the relation cache for this column
849 delete $self->{related_resultsets}{$column};
850
1d0057bd 851 return $new_value;
7624b19f 852}
853
8091aa91 854=head2 set_columns
076a6864 855
a2531bf2 856 $row->set_columns({ $col => $val, ... });
857
b6d347e0 858=over
076a6864 859
a2531bf2 860=item Arguments: \%columndata
861
862=item Returns: The Row object
863
864=back
865
866Sets multiple column, raw value pairs at once.
867
868Works as L</set_column>.
076a6864 869
870=cut
871
872sub set_columns {
873 my ($self,$data) = @_;
a2ca474b 874 foreach my $col (keys %$data) {
875 $self->set_column($col,$data->{$col});
076a6864 876 }
c01ab172 877 return $self;
076a6864 878}
879
bacf6f12 880=head2 set_inflated_columns
881
a2531bf2 882 $row->set_inflated_columns({ $col => $val, $relname => $obj, ... });
883
884=over
885
886=item Arguments: \%columndata
887
888=item Returns: The Row object
889
890=back
891
892Sets more than one column value at once. Any inflated values are
b6d347e0 893deflated and the raw values stored.
bacf6f12 894
a2531bf2 895Any related values passed as Row objects, using the relation name as a
896key, are reduced to the appropriate foreign key values and stored. If
897instead of related row objects, a hashref of column, value data is
898passed, will create the related object first then store.
899
900Will even accept arrayrefs of data as a value to a
901L<DBIx::Class::Relationship/has_many> key, and create the related
902objects if necessary.
903
c1300297 904Be aware that the input hashref might be edited in place, so don't rely
a2531bf2 905on it being the same after a call to C<set_inflated_columns>. If you
906need to preserve the hashref, it is sufficient to pass a shallow copy
907to C<set_inflated_columns>, e.g. ( { %{ $href } } )
908
909See also L<DBIx::Class::Relationship::Base/set_from_related>.
bacf6f12 910
911=cut
912
913sub set_inflated_columns {
914 my ( $self, $upd ) = @_;
915 foreach my $key (keys %$upd) {
916 if (ref $upd->{$key}) {
917 my $info = $self->relationship_info($key);
b82c8a28 918 my $acc_type = $info->{attrs}{accessor} || '';
919 if ($acc_type eq 'single') {
bacf6f12 920 my $rel = delete $upd->{$key};
921 $self->set_from_related($key => $rel);
a7be8807 922 $self->{_relationship_data}{$key} = $rel;
bacf6f12 923 }
b82c8a28 924 elsif ($acc_type eq 'multi') {
925 $self->throw_exception(
926 "Recursive update is not supported over relationships of type '$acc_type' ($key)"
927 );
928 }
929 elsif ($self->has_column($key) && exists $self->column_info($key)->{_inflate_info}) {
a7be8807 930 $self->set_inflated_column($key, delete $upd->{$key});
bacf6f12 931 }
932 }
933 }
b6d347e0 934 $self->set_columns($upd);
bacf6f12 935}
936
8091aa91 937=head2 copy
076a6864 938
939 my $copy = $orig->copy({ change => $to, ... });
940
a2531bf2 941=over
942
943=item Arguments: \%replacementdata
944
945=item Returns: The Row object copy
946
947=back
948
949Inserts a new row into the database, as a copy of the original
950object. If a hashref of replacement data is supplied, these will take
ce0893e0 951precedence over data in the original. Also any columns which have
952the L<column info attribute|DBIx::Class::ResultSource/add_columns>
953C<< is_auto_increment => 1 >> are explicitly removed before the copy,
954so that the database can insert its own autoincremented values into
955the new object.
a2531bf2 956
f928c965 957Relationships will be followed by the copy procedure B<only> if the
48580715 958relationship specifies a true value for its
f928c965 959L<cascade_copy|DBIx::Class::Relationship::Base> attribute. C<cascade_copy>
960is set by default on C<has_many> relationships and unset on all others.
076a6864 961
962=cut
963
c01ab172 964sub copy {
965 my ($self, $changes) = @_;
333cce60 966 $changes ||= {};
fde6e28e 967 my $col_data = { %{$self->{_column_data}} };
968 foreach my $col (keys %$col_data) {
969 delete $col_data->{$col}
970 if $self->result_source->column_info($col)->{is_auto_increment};
971 }
04786a4c 972
973 my $new = { _column_data => $col_data };
974 bless $new, ref $self;
975
83419ec6 976 $new->result_source($self->result_source);
bacf6f12 977 $new->set_inflated_columns($changes);
333cce60 978 $new->insert;
35688220 979
b6d347e0 980 # Its possible we'll have 2 relations to the same Source. We need to make
48580715 981 # sure we don't try to insert the same row twice else we'll violate unique
35688220 982 # constraints
983 my $rels_copied = {};
984
333cce60 985 foreach my $rel ($self->result_source->relationships) {
986 my $rel_info = $self->result_source->relationship_info($rel);
35688220 987
988 next unless $rel_info->{attrs}{cascade_copy};
b6d347e0 989
6d0ee587 990 my $resolved = $self->result_source->_resolve_condition(
35688220 991 $rel_info->{cond}, $rel, $new
992 );
993
994 my $copied = $rels_copied->{ $rel_info->{source} } ||= {};
995 foreach my $related ($self->search_related($rel)) {
996 my $id_str = join("\0", $related->id);
997 next if $copied->{$id_str};
998 $copied->{$id_str} = 1;
999 my $rel_copy = $related->copy($resolved);
333cce60 1000 }
b6d347e0 1001
333cce60 1002 }
2c4c67b6 1003 return $new;
c01ab172 1004}
1005
8091aa91 1006=head2 store_column
7624b19f 1007
a2531bf2 1008 $row->store_column($col => $val);
7624b19f 1009
a2531bf2 1010=over
1011
1012=item Arguments: $columnname, $value
1013
ea36f4e4 1014=item Returns: The value sent to storage
a2531bf2 1015
1016=back
1017
1018Set a raw value for a column without marking it as changed. This
1019method is used internally by L</set_column> which you should probably
1020be using.
1021
1022This is the lowest level at which data is set on a row object,
1023extend this method to catch all data setting methods.
7624b19f 1024
1025=cut
1026
1027sub store_column {
1028 my ($self, $column, $value) = @_;
75d07914 1029 $self->throw_exception( "No such column '${column}'" )
d7156e50 1030 unless exists $self->{_column_data}{$column} || $self->has_column($column);
75d07914 1031 $self->throw_exception( "set_column called for ${column} without value" )
7624b19f 1032 if @_ < 3;
1033 return $self->{_column_data}{$column} = $value;
1034}
1035
b52e9bf8 1036=head2 inflate_result
1037
c01ab172 1038 Class->inflate_result($result_source, \%me, \%prefetch?)
b52e9bf8 1039
a2531bf2 1040=over
1041
1042=item Arguments: $result_source, \%columndata, \%prefetcheddata
1043
1044=item Returns: A Row object
1045
1046=back
1047
1048All L<DBIx::Class::ResultSet> methods that retrieve data from the
1049database and turn it into row objects call this method.
1050
1051Extend this method in your Result classes to hook into this process,
1052for example to rebless the result into a different class.
1053
1054Reblessing can also be done more easily by setting C<result_class> in
1055your Result class. See L<DBIx::Class::ResultSource/result_class>.
b52e9bf8 1056
db2b2eb6 1057Different types of results can also be created from a particular
1058L<DBIx::Class::ResultSet>, see L<DBIx::Class::ResultSet/result_class>.
1059
b52e9bf8 1060=cut
1061
1062sub inflate_result {
c01ab172 1063 my ($class, $source, $me, $prefetch) = @_;
aec3eff1 1064
1065 my ($source_handle) = $source;
1066
1067 if ($source->isa('DBIx::Class::ResultSourceHandle')) {
13d06949 1068 $source = $source_handle->resolve
1069 }
1070 else {
1071 $source_handle = $source->handle
aec3eff1 1072 }
1073
04786a4c 1074 my $new = {
aec3eff1 1075 _source_handle => $source_handle,
04786a4c 1076 _column_data => $me,
04786a4c 1077 };
1078 bless $new, (ref $class || $class);
1079
64acc2bc 1080 foreach my $pre (keys %{$prefetch||{}}) {
35c77aa3 1081
13d06949 1082 my $pre_source = $source->related_source($pre)
1083 or $class->throw_exception("Can't prefetch non-existent relationship ${pre}");
1084
1085 my $accessor = $source->relationship_info($pre)->{attrs}{accessor}
1086 or $class->throw_exception("No accessor for prefetched $pre");
35c77aa3 1087
13d06949 1088 my @pre_vals;
1089 if (ref $prefetch->{$pre}[0] eq 'ARRAY') {
1090 @pre_vals = @{$prefetch->{$pre}};
1091 }
1092 elsif ($accessor eq 'multi') {
1093 $class->throw_exception("Implicit prefetch (via select/columns) not supported with accessor 'multi'");
1094 }
1095 else {
1096 @pre_vals = $prefetch->{$pre};
1097 }
1098
1099 my @pre_objects;
1100 for my $me_pref (@pre_vals) {
1101
1102 # FIXME - this should not be necessary
35c77aa3 1103 # the collapser currently *could* return bogus elements with all
1104 # columns set to undef
1105 my $has_def;
1106 for (values %{$me_pref->[0]}) {
1107 if (defined $_) {
1108 $has_def++;
1109 last;
1110 }
a86b1efe 1111 }
35c77aa3 1112 next unless $has_def;
1113
1114 push @pre_objects, $pre_source->result_class->inflate_result(
1115 $pre_source, @$me_pref
1116 );
13d06949 1117 }
35c77aa3 1118
13d06949 1119 if ($accessor eq 'single') {
1120 $new->{_relationship_data}{$pre} = $pre_objects[0];
b52e9bf8 1121 }
13d06949 1122 elsif ($accessor eq 'filter') {
1123 $new->{_inflated_column}{$pre} = $pre_objects[0];
1124 }
1125
1126 $new->related_resultset($pre)->set_cache(\@pre_objects);
b52e9bf8 1127 }
35c77aa3 1128
1129 $new->in_storage (1);
7624b19f 1130 return $new;
1131}
1132
9b465d00 1133=head2 update_or_insert
7624b19f 1134
a2531bf2 1135 $row->update_or_insert
1136
1137=over
7624b19f 1138
a2531bf2 1139=item Arguments: none
1140
1141=item Returns: Result of update or insert operation
1142
1143=back
1144
1145L</Update>s the object if it's already in the database, according to
1146L</in_storage>, else L</insert>s it.
7624b19f 1147
9b83fccd 1148=head2 insert_or_update
1149
1150 $obj->insert_or_update
1151
1152Alias for L</update_or_insert>
1153
7624b19f 1154=cut
1155
370f2ba2 1156sub insert_or_update { shift->update_or_insert(@_) }
1157
9b465d00 1158sub update_or_insert {
7624b19f 1159 my $self = shift;
1160 return ($self->in_storage ? $self->update : $self->insert);
1161}
1162
8091aa91 1163=head2 is_changed
7624b19f 1164
a2531bf2 1165 my @changed_col_names = $row->is_changed();
1166 if ($row->is_changed()) { ... }
1167
1168=over
7624b19f 1169
a2531bf2 1170=item Arguments: none
1171
1172=item Returns: 0|1 or @columnnames
1173
1174=back
1175
1176In list context returns a list of columns with uncommited changes, or
9b83fccd 1177in scalar context returns a true value if there are uncommitted
1178changes.
1179
7624b19f 1180=cut
1181
1182sub is_changed {
1183 return keys %{shift->{_dirty_columns} || {}};
1184}
228dbcb4 1185
1186=head2 is_column_changed
1187
a2531bf2 1188 if ($row->is_column_changed('col')) { ... }
1189
1190=over
1191
1192=item Arguments: $columname
1193
1194=item Returns: 0|1
1195
1196=back
228dbcb4 1197
9b83fccd 1198Returns a true value if the column has uncommitted changes.
1199
228dbcb4 1200=cut
1201
1202sub is_column_changed {
1203 my( $self, $col ) = @_;
1204 return exists $self->{_dirty_columns}->{$col};
1205}
7624b19f 1206
097d3227 1207=head2 result_source
1208
a2531bf2 1209 my $resultsource = $row->result_source;
1210
1211=over
1212
1213=item Arguments: none
097d3227 1214
a2531bf2 1215=item Returns: a ResultSource instance
1216
1217=back
1218
1219Accessor to the L<DBIx::Class::ResultSource> this object was created from.
87c4e602 1220
aec3eff1 1221=cut
1222
1223sub result_source {
1224 my $self = shift;
1225
1226 if (@_) {
1227 $self->_source_handle($_[0]->handle);
1228 } else {
1229 $self->_source_handle->resolve;
1230 }
1231}
1232
9b83fccd 1233=head2 register_column
27f01d1f 1234
9b83fccd 1235 $column_info = { .... };
1236 $class->register_column($column_name, $column_info);
27f01d1f 1237
a2531bf2 1238=over
1239
1240=item Arguments: $columnname, \%columninfo
1241
1242=item Returns: undefined
1243
1244=back
1245
9b83fccd 1246Registers a column on the class. If the column_info has an 'accessor'
1247key, creates an accessor named after the value if defined; if there is
1248no such key, creates an accessor with the same name as the column
1f23a877 1249
9b83fccd 1250The column_info attributes are described in
1251L<DBIx::Class::ResultSource/add_columns>
1f23a877 1252
097d3227 1253=cut
1254
1f23a877 1255sub register_column {
1256 my ($class, $col, $info) = @_;
91b0fbd7 1257 my $acc = $col;
1258 if (exists $info->{accessor}) {
1259 return unless defined $info->{accessor};
1260 $acc = [ $info->{accessor}, $col ];
1261 }
1262 $class->mk_group_accessors('column' => $acc);
1f23a877 1263}
1264
a2531bf2 1265=head2 get_from_storage
1266
1267 my $copy = $row->get_from_storage($attrs)
1268
1269=over
b9b4e52f 1270
a2531bf2 1271=item Arguments: \%attrs
b9b4e52f 1272
a2531bf2 1273=item Returns: A Row object
1274
1275=back
1276
1277Fetches a fresh copy of the Row object from the database and returns it.
1278
1279If passed the \%attrs argument, will first apply these attributes to
1280the resultset used to find the row.
1281
1282This copy can then be used to compare to an existing row object, to
1283determine if any changes have been made in the database since it was
1284created.
1285
1286To just update your Row object with any latest changes from the
1287database, use L</discard_changes> instead.
1288
1289The \%attrs argument should be compatible with
1290L<DBIx::Class::ResultSet/ATTRIBUTES>.
7e38d850 1291
b9b4e52f 1292=cut
1293
a737512c 1294sub get_from_storage {
b9b4e52f 1295 my $self = shift @_;
7e38d850 1296 my $attrs = shift @_;
7e38d850 1297 my $resultset = $self->result_source->resultset;
b6d347e0 1298
7e38d850 1299 if(defined $attrs) {
bbd107cf 1300 $resultset = $resultset->search(undef, $attrs);
7e38d850 1301 }
b6d347e0 1302
cf856357 1303 my $ident_cond = $self->{_orig_ident} || $self->ident_condition;
1304
1305 $self->throw_exception('Unable to requery a row with incomplete or no identity')
1306 if ! keys %$ident_cond;
1307
1308 return $resultset->find($ident_cond);
b9b4e52f 1309}
701da8c4 1310
bbd107cf 1311=head2 discard_changes ($attrs)
1312
1313Re-selects the row from the database, losing any changes that had
1314been made.
1315
1316This method can also be used to refresh from storage, retrieving any
1317changes made since the row was last read from storage.
1318
1319$attrs is expected to be a hashref of attributes suitable for passing as the
1320second argument to $resultset->search($cond, $attrs);
1321
1322=cut
1323
1324sub discard_changes {
1325 my ($self, $attrs) = @_;
1326 delete $self->{_dirty_columns};
1327 return unless $self->in_storage; # Don't reload if we aren't real!
1328
1329 # add a replication default to read from the master only
1330 $attrs = { force_pool => 'master', %{$attrs||{}} };
1331
1332 if( my $current_storage = $self->get_from_storage($attrs)) {
1333
1334 # Set $self to the current.
1335 %$self = %$current_storage;
1336
1337 # Avoid a possible infinite loop with
1338 # sub DESTROY { $_[0]->discard_changes }
1339 bless $current_storage, 'Do::Not::Exist';
1340
1341 return $self;
1342 }
1343 else {
1344 $self->in_storage(0);
1345 return $self;
1346 }
1347}
1348
1349
5160b401 1350=head2 throw_exception
701da8c4 1351
a2531bf2 1352See L<DBIx::Class::Schema/throw_exception>.
701da8c4 1353
1354=cut
1355
1356sub throw_exception {
1357 my $self=shift;
1a58752c 1358
66cab05c 1359 if (ref $self && ref $self->result_source && $self->result_source->schema) {
1a58752c 1360 $self->result_source->schema->throw_exception(@_)
1361 }
1362 else {
1363 DBIx::Class::Exception->throw(@_);
701da8c4 1364 }
1365}
1366
33cf6616 1367=head2 id
1368
a2531bf2 1369 my @pk = $row->id;
1370
1371=over
1372
1373=item Arguments: none
1374
1375=item Returns: A list of primary key values
1376
1377=back
1378
33cf6616 1379Returns the primary key(s) for a row. Can't be called as a class method.
f7043881 1380Actually implemented in L<DBIx::Class::PK>
33cf6616 1381
1382=head2 discard_changes
1383
a2531bf2 1384 $row->discard_changes
1385
1386=over
1387
1388=item Arguments: none
1389
1390=item Returns: nothing (updates object in-place)
1391
1392=back
1393
1394Retrieves and sets the row object data from the database, losing any
1395local changes made.
33cf6616 1396
1397This method can also be used to refresh from storage, retrieving any
1398changes made since the row was last read from storage. Actually
f7043881 1399implemented in L<DBIx::Class::PK>
33cf6616 1400
071bbccb 1401Note: If you are using L<DBIx::Class::Storage::DBI::Replicated> as your
1402storage, please kept in mind that if you L</discard_changes> on a row that you
1403just updated or created, you should wrap the entire bit inside a transaction.
1404Otherwise you run the risk that you insert or update to the master database
1405but read from a replicant database that has not yet been updated from the
1406master. This will result in unexpected results.
1407
33cf6616 1408=cut
1409
7624b19f 14101;
1411
7624b19f 1412=head1 AUTHORS
1413
daec44b8 1414Matt S. Trout <mst@shadowcatsystems.co.uk>
7624b19f 1415
1416=head1 LICENSE
1417
1418You may distribute this code under the same terms as Perl itself.
1419
1420=cut