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 ($attrs)
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.
36 $attrs is expected to be a hashref of attributes suitable for passing as the
37 second argument to $resultset->search($cond, $attrs);
42 my ($self, $attrs) = @_;
43 delete $self->{_dirty_columns};
44 return unless $self->in_storage; # Don't reload if we aren't real!
46 if( my $current_storage = $self->get_from_storage($attrs)) {
48 # Set $self to the current.
49 %$self = %$current_storage;
51 # Avoid a possible infinite loop with
52 # sub DESTROY { $_[0]->discard_changes }
53 bless $current_storage, 'Do::Not::Exist';
64 Returns the primary key(s) for a row. Can't be called as
71 $self->throw_exception( "Can't call id() as a class method" )
73 my @pk = $self->_ident_values;
74 return (wantarray ? @pk : $pk[0]);
79 Returns a unique id string identifying a row object by primary key.
80 Used by L<DBIx::Class::CDBICompat::LiveObjectIndex> and
81 L<DBIx::Class::ObjectCache>.
87 $self->throw_exception( "Can't call ID() as a class method" )
89 return undef unless $self->in_storage;
90 return $self->_create_ID(map { $_ => $self->{_column_data}{$_} }
91 $self->primary_columns);
95 my ($self,%vals) = @_;
96 return undef unless 0 == grep { !defined } values %vals;
97 return join '|', ref $self || $self, $self->result_source->name,
98 map { $_ . '=' . $vals{$_} } sort keys %vals;
101 =head2 ident_condition
103 my $cond = $result_source->ident_condition();
105 my $cond = $result_source->ident_condition('alias');
107 Produces a condition hash to locate a row based on the primary key(s).
111 sub ident_condition {
112 my ($self, $alias) = @_;
114 my $prefix = defined $alias ? $alias.'.' : '';
115 $cond{$prefix.$_} = $self->get_column($_) for $self->primary_columns;
123 Matt S. Trout <mst@shadowcatsystems.co.uk>
127 You may distribute this code under the same terms as Perl itself.