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!
42 my ($reload) = $self->result_source->resultset->find
43 (map { $self->$_ } $self->primary_columns);
44 unless ($reload) { # If we got deleted in the mean-time
48 delete @{$self}{keys %$self};
49 @{$self}{keys %$reload} = values %$reload;
55 Returns the primary key(s) for a row. Can't be called as
62 $self->throw_exception( "Can't call id() as a class method" )
64 my @pk = $self->_ident_values;
65 return (wantarray ? @pk : $pk[0]);
70 Returns a unique id string identifying a row object by primary key.
71 Used by L<DBIx::Class::CDBICompat::LiveObjectIndex> and
72 L<DBIx::Class::ObjectCache>.
78 $self->throw_exception( "Can't call ID() as a class method" )
80 return undef unless $self->in_storage;
81 return $self->_create_ID(map { $_ => $self->{_column_data}{$_} }
82 $self->primary_columns);
86 my ($self,%vals) = @_;
87 return undef unless 0 == grep { !defined } values %vals;
88 return join '|', ref $self || $self, $self->result_source->name,
89 map { $_ . '=' . $vals{$_} } sort keys %vals;
92 =head2 ident_condition
94 my $cond = $result_source->ident_condition();
96 my $cond = $result_source->ident_condition('alias');
98 Produces a condition hash to locate a row based on the primary key(s).
102 sub ident_condition {
103 my ($self, $alias) = @_;
105 my $prefix = defined $alias ? $alias.'.' : '';
106 $cond{$prefix.$_} = $self->get_column($_) for $self->primary_columns;
114 Matt S. Trout <mst@shadowcatsystems.co.uk>
118 You may distribute this code under the same terms as Perl itself.