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