1 package DBIx::Class::PK;
6 use base qw/DBIx::Class::Row/;
10 DBIx::Class::PK - Primary Key class
16 This class contains methods for handling primary keys and methods
25 return (map { $self->{_column_data}{$_} } $self->primary_columns);
28 =head2 discard_changes
30 Re-selects the row from the database, losing any changes that had
33 This method can also be used to refresh from storage, retrieving any
34 changes made since the row was last read from storage.
40 delete $self->{_dirty_columns};
41 return unless $self->in_storage; # Don't reload if we aren't real!
43 my $reload = $self->result_source->schema->storage->reload_row($self);
45 unless ($reload) { # If we got deleted in the mean-time
52 # Avoid a possible infinite loop with
53 # sub DESTROY { $_[0]->discard_changes }
54 bless $reload, 'Do::Not::Exist';
61 Returns the primary key(s) for a row. Can't be called as
68 $self->throw_exception( "Can't call id() as a class method" )
70 my @pk = $self->_ident_values;
71 return (wantarray ? @pk : $pk[0]);
76 Returns a unique id string identifying a row object by primary key.
77 Used by L<DBIx::Class::CDBICompat::LiveObjectIndex> and
78 L<DBIx::Class::ObjectCache>.
84 $self->throw_exception( "Can't call ID() as a class method" )
86 return undef unless $self->in_storage;
87 return $self->_create_ID(map { $_ => $self->{_column_data}{$_} }
88 $self->primary_columns);
92 my ($self,%vals) = @_;
93 return undef unless 0 == grep { !defined } values %vals;
94 return join '|', ref $self || $self, $self->result_source->name,
95 map { $_ . '=' . $vals{$_} } sort keys %vals;
98 =head2 ident_condition
100 my $cond = $result_source->ident_condition();
102 my $cond = $result_source->ident_condition('alias');
104 Produces a condition hash to locate a row based on the primary key(s).
108 sub ident_condition {
109 my ($self, $alias) = @_;
111 my $prefix = defined $alias ? $alias.'.' : '';
112 $cond{$prefix.$_} = $self->get_column($_) for $self->primary_columns;
120 Matt S. Trout <mst@shadowcatsystems.co.uk>
124 You may distribute this code under the same terms as Perl itself.