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->resultset->find(
44 map { $self->$_ } $self->primary_columns
46 unless ($reload) { # If we got deleted in the mean-time
53 # Avoid a possible infinite loop with
54 # sub DESTROY { $_[0]->discard_changes }
55 bless $reload, 'Do::Not::Exist';
62 Returns the primary key(s) for a row. Can't be called as
69 $self->throw_exception( "Can't call id() as a class method" )
71 my @pk = $self->_ident_values;
72 return (wantarray ? @pk : $pk[0]);
77 Returns a unique id string identifying a row object by primary key.
78 Used by L<DBIx::Class::CDBICompat::LiveObjectIndex> and
79 L<DBIx::Class::ObjectCache>.
85 $self->throw_exception( "Can't call ID() as a class method" )
87 return undef unless $self->in_storage;
88 return $self->_create_ID(map { $_ => $self->{_column_data}{$_} }
89 $self->primary_columns);
93 my ($self,%vals) = @_;
94 return undef unless 0 == grep { !defined } values %vals;
95 return join '|', ref $self || $self, $self->result_source->name,
96 map { $_ . '=' . $vals{$_} } sort keys %vals;
99 =head2 ident_condition
101 my $cond = $result_source->ident_condition();
103 my $cond = $result_source->ident_condition('alias');
105 Produces a condition hash to locate a row based on the primary key(s).
109 sub ident_condition {
110 my ($self, $alias) = @_;
112 my $prefix = defined $alias ? $alias.'.' : '';
113 $cond{$prefix.$_} = $self->get_column($_) for $self->primary_columns;
121 Matt S. Trout <mst@shadowcatsystems.co.uk>
125 You may distribute this code under the same terms as Perl itself.