1 package DBIx::Class::ResultSet;
11 use Scalar::Util qw/weaken/;
13 use DBIx::Class::ResultSetColumn;
14 use base qw/DBIx::Class/;
15 __PACKAGE__->load_components(qw/AccessorGroup/);
16 __PACKAGE__->mk_group_accessors('simple' => qw/result_source result_class/);
20 DBIx::Class::ResultSet - Responsible for fetching and creating resultset.
24 my $rs = $schema->resultset('User')->search(registered => 1);
25 my @rows = $schema->resultset('CD')->search(year => 2005);
29 The resultset is also known as an iterator. It is responsible for handling
30 queries that may return an arbitrary number of rows, e.g. via L</search>
31 or a C<has_many> relationship.
33 In the examples below, the following table classes are used:
35 package MyApp::Schema::Artist;
36 use base qw/DBIx::Class/;
37 __PACKAGE__->load_components(qw/Core/);
38 __PACKAGE__->table('artist');
39 __PACKAGE__->add_columns(qw/artistid name/);
40 __PACKAGE__->set_primary_key('artistid');
41 __PACKAGE__->has_many(cds => 'MyApp::Schema::CD');
44 package MyApp::Schema::CD;
45 use base qw/DBIx::Class/;
46 __PACKAGE__->load_components(qw/Core/);
47 __PACKAGE__->table('cd');
48 __PACKAGE__->add_columns(qw/cdid artist title year/);
49 __PACKAGE__->set_primary_key('cdid');
50 __PACKAGE__->belongs_to(artist => 'MyApp::Schema::Artist');
59 =item Arguments: $source, \%$attrs
61 =item Return Value: $rs
65 The resultset constructor. Takes a source object (usually a
66 L<DBIx::Class::ResultSourceProxy::Table>) and an attribute hash (see
67 L</ATTRIBUTES> below). Does not perform any queries -- these are
68 executed as needed by the other methods.
70 Generally you won't need to construct a resultset manually. You'll
71 automatically get one from e.g. a L</search> called in scalar context:
73 my $rs = $schema->resultset('CD')->search({ title => '100th Window' });
75 IMPORTANT: If called on an object, proxies to new_result instead so
77 my $cd = $schema->resultset('CD')->new({ title => 'Spoon' });
79 will return a CD object, not a ResultSet.
85 return $class->new_result(@_) if ref $class;
87 my ($source, $attrs) = @_;
89 $attrs = Storable::dclone($attrs || {}); # { %{ $attrs || {} } };
90 #use Data::Dumper; warn Dumper($attrs);
91 my $alias = ($attrs->{alias} ||= 'me');
93 $attrs->{columns} ||= delete $attrs->{cols} if $attrs->{cols};
94 delete $attrs->{as} if $attrs->{columns};
95 $attrs->{columns} ||= [ $source->columns ] unless $attrs->{select};
97 map { m/\./ ? $_ : "${alias}.$_" } @{delete $attrs->{columns}}
98 ] if $attrs->{columns};
100 map { m/^\Q$alias.\E(.+)$/ ? $1 : $_ } @{$attrs->{select}}
102 if (my $include = delete $attrs->{include_columns}) {
103 push(@{$attrs->{select}}, @$include);
104 push(@{$attrs->{as}}, map { m/([^.]+)$/; $1; } @$include);
106 #use Data::Dumper; warn Dumper(@{$attrs}{qw/select as/});
108 $attrs->{from} ||= [ { $alias => $source->from } ];
109 $attrs->{seen_join} ||= {};
111 if (my $join = delete $attrs->{join}) {
112 foreach my $j (ref $join eq 'ARRAY' ? @$join : ($join)) {
113 if (ref $j eq 'HASH') {
114 $seen{$_} = 1 foreach keys %$j;
119 push(@{$attrs->{from}}, $source->resolve_join(
120 $join, $attrs->{alias}, $attrs->{seen_join})
124 $attrs->{group_by} ||= $attrs->{select} if delete $attrs->{distinct};
125 $attrs->{order_by} = [ $attrs->{order_by} ] if
126 $attrs->{order_by} and !ref($attrs->{order_by});
127 $attrs->{order_by} ||= [];
129 my $collapse = $attrs->{collapse} || {};
130 if (my $prefetch = delete $attrs->{prefetch}) {
132 foreach my $p (ref $prefetch eq 'ARRAY' ? @$prefetch : ($prefetch)) {
133 if ( ref $p eq 'HASH' ) {
134 foreach my $key (keys %$p) {
135 push(@{$attrs->{from}}, $source->resolve_join($p, $attrs->{alias}))
139 push(@{$attrs->{from}}, $source->resolve_join($p, $attrs->{alias}))
142 my @prefetch = $source->resolve_prefetch(
143 $p, $attrs->{alias}, {}, \@pre_order, $collapse);
144 push(@{$attrs->{select}}, map { $_->[0] } @prefetch);
145 push(@{$attrs->{as}}, map { $_->[1] } @prefetch);
147 push(@{$attrs->{order_by}}, @pre_order);
149 $attrs->{collapse} = $collapse;
150 # use Data::Dumper; warn Dumper($collapse) if keys %{$collapse};
152 if ($attrs->{page}) {
153 $attrs->{rows} ||= 10;
154 $attrs->{offset} ||= 0;
155 $attrs->{offset} += ($attrs->{rows} * ($attrs->{page} - 1));
159 result_source => $source,
160 result_class => $attrs->{result_class} || $source->result_class,
161 cond => $attrs->{where},
162 from => $attrs->{from},
163 collapse => $collapse,
165 page => delete $attrs->{page},
175 =item Arguments: $cond, \%attrs?
177 =item Return Value: $resultset (scalar context), @row_objs (list context)
181 my @cds = $cd_rs->search({ year => 2001 }); # "... WHERE year = 2001"
182 my $new_rs = $cd_rs->search({ year => 2005 });
184 my $new_rs = $cd_rs->search([ { year => 2005 }, { year => 2004 } ]);
185 # year = 2005 OR year = 2004
187 If you need to pass in additional attributes but no additional condition,
188 call it as C<search(undef, \%attrs)>.
190 # "SELECT name, artistid FROM $artist_table"
191 my @all_artists = $schema->resultset('Artist')->search(undef, {
192 columns => [qw/name artistid/],
200 my $attrs = { %{$self->{attrs}} };
201 my $having = delete $attrs->{having};
202 $attrs = { %$attrs, %{ pop(@_) } } if @_ > 1 and ref $_[$#_] eq 'HASH';
205 ? ((@_ == 1 || ref $_[0] eq "HASH")
208 ? $self->throw_exception(
209 "Odd number of arguments to search")
212 if (defined $where) {
213 $attrs->{where} = (defined $attrs->{where}
215 [ map { ref $_ eq 'ARRAY' ? [ -or => $_ ] : $_ }
216 $where, $attrs->{where} ] }
220 if (defined $having) {
221 $attrs->{having} = (defined $attrs->{having}
223 [ map { ref $_ eq 'ARRAY' ? [ -or => $_ ] : $_ }
224 $having, $attrs->{having} ] }
228 my $rs = (ref $self)->new($self->result_source, $attrs);
230 my $rows = $self->get_cache;
232 $rs->set_cache($rows);
235 return (wantarray ? $rs->all : $rs);
238 =head2 search_literal
242 =item Arguments: $sql_fragment, @bind_values
244 =item Return Value: $resultset (scalar context), @row_objs (list context)
248 my @cds = $cd_rs->search_literal('year = ? AND title = ?', qw/2001 Reload/);
249 my $newrs = $artist_rs->search_literal('name = ?', 'Metallica');
251 Pass a literal chunk of SQL to be added to the conditional part of the
257 my ($self, $cond, @vals) = @_;
258 my $attrs = (ref $vals[$#vals] eq 'HASH' ? { %{ pop(@vals) } } : {});
259 $attrs->{bind} = [ @{$self->{attrs}{bind}||[]}, @vals ];
260 return $self->search(\$cond, $attrs);
267 =item Arguments: @values | \%cols, \%attrs?
269 =item Return Value: $row_object
273 Finds a row based on its primary key or unique constraint. For example:
275 my $cd = $schema->resultset('CD')->find(5);
277 Also takes an optional C<key> attribute, to search by a specific key or unique
278 constraint. For example:
280 my $cd = $schema->resultset('CD')->find(
282 artist => 'Massive Attack',
283 title => 'Mezzanine',
285 { key => 'artist_title' }
288 See also L</find_or_create> and L</update_or_create>.
293 my ($self, @vals) = @_;
294 my $attrs = (@vals > 1 && ref $vals[$#vals] eq 'HASH' ? pop(@vals) : {});
296 my @cols = $self->result_source->primary_columns;
297 if (exists $attrs->{key}) {
298 my %uniq = $self->result_source->unique_constraints;
299 $self->throw_exception(
300 "Unknown key $attrs->{key} on '" . $self->result_source->name . "'"
301 ) unless exists $uniq{$attrs->{key}};
302 @cols = @{ $uniq{$attrs->{key}} };
304 #use Data::Dumper; warn Dumper($attrs, @vals, @cols);
305 $self->throw_exception(
306 "Can't find unless a primary key or unique constraint is defined"
310 if (ref $vals[0] eq 'HASH') {
311 $query = { %{$vals[0]} };
312 } elsif (@cols == @vals) {
314 @{$query}{@cols} = @vals;
318 foreach my $key (grep { ! m/\./ } keys %$query) {
319 $query->{"$self->{attrs}{alias}.$key"} = delete $query->{$key};
321 #warn Dumper($query);
324 my $rs = $self->search($query,$attrs);
325 return keys %{$rs->{collapse}} ? $rs->next : $rs->single;
327 return keys %{$self->{collapse}} ?
328 $self->search($query)->next :
329 $self->single($query);
333 =head2 search_related
337 =item Arguments: $cond, \%attrs?
339 =item Return Value: $new_resultset
343 $new_rs = $cd_rs->search_related('artist', {
347 Searches the specified relationship, optionally specifying a condition and
348 attributes for matching records. See L</ATTRIBUTES> for more information.
353 return shift->related_resultset(shift)->search(@_);
360 =item Arguments: none
362 =item Return Value: $cursor
366 Returns a storage-driven cursor to the given resultset. See
367 L<DBIx::Class::Cursor> for more information.
373 my $attrs = { %{$self->{attrs}} };
374 return $self->{cursor}
375 ||= $self->result_source->storage->select($self->{from}, $attrs->{select},
376 $attrs->{where},$attrs);
383 =item Arguments: $cond?
385 =item Return Value: $row_object?
389 my $cd = $schema->resultset('CD')->single({ year => 2001 });
391 Inflates the first result without creating a cursor if the resultset has
392 any records in it; if not returns nothing. Used by find() as an optimisation.
397 my ($self, $where) = @_;
398 my $attrs = { %{$self->{attrs}} };
400 if (defined $attrs->{where}) {
403 [ map { ref $_ eq 'ARRAY' ? [ -or => $_ ] : $_ }
404 $where, delete $attrs->{where} ]
407 $attrs->{where} = $where;
410 my @data = $self->result_source->storage->select_single(
411 $self->{from}, $attrs->{select},
412 $attrs->{where},$attrs);
413 return (@data ? $self->_construct_object(@data) : ());
420 =item Arguments: $cond?
422 =item Return Value: $resultsetcolumn
426 my $max_length = $rs->get_column('length')->max;
428 Returns a ResultSetColumn instance for $column based on $self
433 my ($self, $column) = @_;
435 my $new = DBIx::Class::ResultSetColumn->new($self, $column);
443 =item Arguments: $cond, \%attrs?
445 =item Return Value: $resultset (scalar context), @row_objs (list context)
449 # WHERE title LIKE '%blue%'
450 $cd_rs = $rs->search_like({ title => '%blue%'});
452 Performs a search, but uses C<LIKE> instead of C<=> as the condition. Note
453 that this is simply a convenience method. You most likely want to use
454 L</search> with specific operators.
456 For more information, see L<DBIx::Class::Manual::Cookbook>.
462 my $attrs = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
463 my $query = ref $_[0] eq 'HASH' ? { %{shift()} }: {@_};
464 $query->{$_} = { 'like' => $query->{$_} } for keys %$query;
465 return $class->search($query, { %$attrs });
472 =item Arguments: $first, $last
474 =item Return Value: $resultset (scalar context), @row_objs (list context)
478 Returns a resultset or object list representing a subset of elements from the
479 resultset slice is called on. Indexes are from 0, i.e., to get the first
482 my ($one, $two, $three) = $rs->slice(0, 2);
487 my ($self, $min, $max) = @_;
488 my $attrs = {}; # = { %{ $self->{attrs} || {} } };
489 $attrs->{offset} = $self->{attrs}{offset} || 0;
490 $attrs->{offset} += $min;
491 $attrs->{rows} = ($max ? ($max - $min + 1) : 1);
492 return $self->search(undef(), $attrs);
493 #my $slice = (ref $self)->new($self->result_source, $attrs);
494 #return (wantarray ? $slice->all : $slice);
501 =item Arguments: none
503 =item Return Value: $result?
507 Returns the next element in the resultset (C<undef> is there is none).
509 Can be used to efficiently iterate over records in the resultset:
511 my $rs = $schema->resultset('CD')->search;
512 while (my $cd = $rs->next) {
516 Note that you need to store the resultset object, and call C<next> on it.
517 Calling C<< resultset('Table')->next >> repeatedly will always return the
518 first record from the resultset.
524 if (@{$self->{all_cache} || []}) {
525 $self->{all_cache_position} ||= 0;
526 return $self->{all_cache}->[$self->{all_cache_position}++];
528 if ($self->{attrs}{cache}) {
529 $self->{all_cache_position} = 1;
530 return ($self->all)[0];
532 my @row = (exists $self->{stashed_row} ?
533 @{delete $self->{stashed_row}} :
536 # warn Dumper(\@row); use Data::Dumper;
537 return unless (@row);
538 return $self->_construct_object(@row);
541 sub _construct_object {
542 my ($self, @row) = @_;
543 my @as = @{ $self->{attrs}{as} };
545 my $info = $self->_collapse_result(\@as, \@row);
547 my $new = $self->result_class->inflate_result($self->result_source, @$info);
549 $new = $self->{attrs}{record_filter}->($new)
550 if exists $self->{attrs}{record_filter};
554 sub _collapse_result {
555 my ($self, $as, $row, $prefix) = @_;
560 foreach my $this_as (@$as) {
561 my $val = shift @copy;
562 if (defined $prefix) {
563 if ($this_as =~ m/^\Q${prefix}.\E(.+)$/) {
565 $remain =~ /^(?:(.*)\.)?([^.]+)$/;
566 $const{$1||''}{$2} = $val;
569 $this_as =~ /^(?:(.*)\.)?([^.]+)$/;
570 $const{$1||''}{$2} = $val;
574 my $info = [ {}, {} ];
575 foreach my $key (keys %const) {
578 my @parts = split(/\./, $key);
579 foreach my $p (@parts) {
580 $target = $target->[1]->{$p} ||= [];
582 $target->[0] = $const{$key};
584 $info->[0] = $const{$key};
589 if (defined $prefix) {
591 m/^\Q${prefix}.\E(.+)$/ ? ($1) : ()
592 } keys %{$self->{collapse}}
594 @collapse = keys %{$self->{collapse}};
598 my ($c) = sort { length $a <=> length $b } @collapse;
600 foreach my $p (split(/\./, $c)) {
601 $target = $target->[1]->{$p} ||= [];
603 my $c_prefix = (defined($prefix) ? "${prefix}.${c}" : $c);
604 my @co_key = @{$self->{collapse}{$c_prefix}};
605 my %co_check = map { ($_, $target->[0]->{$_}); } @co_key;
606 my $tree = $self->_collapse_result($as, $row, $c_prefix);
609 !defined($tree->[0]->{$_}) ||
610 $co_check{$_} ne $tree->[0]->{$_}
613 last unless (@raw = $self->cursor->next);
614 $row = $self->{stashed_row} = \@raw;
615 $tree = $self->_collapse_result($as, $row, $c_prefix);
616 #warn Data::Dumper::Dumper($tree, $row);
628 =item Arguments: $result_source?
630 =item Return Value: $result_source
634 An accessor for the primary ResultSource object from which this ResultSet
644 =item Arguments: $cond, \%attrs??
646 =item Return Value: $count
650 Performs an SQL C<COUNT> with the same query as the resultset was built
651 with to find the number of elements. If passed arguments, does a search
652 on the resultset and counts the results of that.
654 Note: When using C<count> with C<group_by>, L<DBIX::Class> emulates C<GROUP BY>
655 using C<COUNT( DISTINCT( columns ) )>. Some databases (notably SQLite) do
656 not support C<DISTINCT> with multiple columns. If you are using such a
657 database, you should only use columns from the main table in your C<group_by>
664 return $self->search(@_)->count if @_ and defined $_[0];
665 return scalar @{ $self->get_cache } if @{ $self->get_cache };
667 my $count = $self->_count;
668 return 0 unless $count;
670 $count -= $self->{attrs}{offset} if $self->{attrs}{offset};
671 $count = $self->{attrs}{rows} if
672 $self->{attrs}{rows} and $self->{attrs}{rows} < $count;
676 sub _count { # Separated out so pager can get the full count
678 my $select = { count => '*' };
679 my $attrs = { %{ $self->{attrs} } };
680 if (my $group_by = delete $attrs->{group_by}) {
681 delete $attrs->{having};
682 my @distinct = (ref $group_by ? @$group_by : ($group_by));
683 # todo: try CONCAT for multi-column pk
684 my @pk = $self->result_source->primary_columns;
686 foreach my $column (@distinct) {
687 if ($column =~ qr/^(?:\Q$attrs->{alias}.\E)?$pk[0]$/) {
688 @distinct = ($column);
694 $select = { count => { distinct => \@distinct } };
695 #use Data::Dumper; die Dumper $select;
698 $attrs->{select} = $select;
699 $attrs->{as} = [qw/count/];
701 # offset, order by and page are not needed to count. record_filter is cdbi
702 delete $attrs->{$_} for qw/rows offset order_by page pager record_filter/;
704 my ($count) = (ref $self)->new($self->result_source, $attrs)->cursor->next;
712 =item Arguments: $sql_fragment, @bind_values
714 =item Return Value: $count
718 Counts the results in a literal query. Equivalent to calling L</search_literal>
719 with the passed arguments, then L</count>.
723 sub count_literal { shift->search_literal(@_)->count; }
729 =item Arguments: none
731 =item Return Value: @objects
735 Returns all elements in the resultset. Called implicitly if the resultset
736 is returned in list context.
742 return @{ $self->get_cache } if @{ $self->get_cache };
746 if (keys %{$self->{collapse}}) {
747 # Using $self->cursor->all is really just an optimisation.
748 # If we're collapsing has_many prefetches it probably makes
749 # very little difference, and this is cleaner than hacking
750 # _construct_object to survive the approach
751 $self->cursor->reset;
752 my @row = $self->cursor->next;
754 push(@obj, $self->_construct_object(@row));
755 @row = (exists $self->{stashed_row}
756 ? @{delete $self->{stashed_row}}
757 : $self->cursor->next);
760 @obj = map { $self->_construct_object(@$_) } $self->cursor->all;
763 $self->set_cache(\@obj) if $self->{attrs}{cache};
771 =item Arguments: none
773 =item Return Value: $self
777 Resets the resultset's cursor, so you can iterate through the elements again.
783 $self->{all_cache_position} = 0;
784 $self->cursor->reset;
792 =item Arguments: none
794 =item Return Value: $object?
798 Resets the resultset and returns an object for the first result (if the
799 resultset returns anything).
804 return $_[0]->reset->next;
807 # _cond_for_update_delete
809 # update/delete require the condition to be modified to handle
810 # the differing SQL syntax available. This transforms the $self->{cond}
811 # appropriately, returning the new condition.
813 sub _cond_for_update_delete {
817 if (!ref($self->{cond})) {
818 # No-op. No condition, we're updating/deleting everything
820 elsif (ref $self->{cond} eq 'ARRAY') {
824 foreach my $key (keys %{$_}) {
826 $hash{$1} = $_->{$key};
832 elsif (ref $self->{cond} eq 'HASH') {
833 if ((keys %{$self->{cond}})[0] eq '-and') {
836 my @cond = @{$self->{cond}{-and}};
837 for (my $i = 0; $i < @cond - 1; $i++) {
838 my $entry = $cond[$i];
841 if (ref $entry eq 'HASH') {
842 foreach my $key (keys %{$entry}) {
844 $hash{$1} = $entry->{$key};
848 $entry =~ /([^.]+)$/;
849 $hash{$entry} = $cond[++$i];
852 push @{$cond->{-and}}, \%hash;
856 foreach my $key (keys %{$self->{cond}}) {
858 $cond->{$1} = $self->{cond}{$key};
863 $self->throw_exception(
864 "Can't update/delete on resultset with condition unless hash or array"
876 =item Arguments: \%values
878 =item Return Value: $storage_rv
882 Sets the specified columns in the resultset to the supplied values in a
883 single query. Return value will be true if the update succeeded or false
884 if no records were updated; exact type of success value is storage-dependent.
889 my ($self, $values) = @_;
890 $self->throw_exception("Values for update must be a hash")
891 unless ref $values eq 'HASH';
893 my $cond = $self->_cond_for_update_delete;
895 return $self->result_source->storage->update(
896 $self->result_source->from, $values, $cond
904 =item Arguments: \%values
906 =item Return Value: 1
910 Fetches all objects and updates them one at a time. Note that C<update_all>
911 will run DBIC cascade triggers, while L</update> will not.
916 my ($self, $values) = @_;
917 $self->throw_exception("Values for update must be a hash")
918 unless ref $values eq 'HASH';
919 foreach my $obj ($self->all) {
920 $obj->set_columns($values)->update;
929 =item Arguments: none
931 =item Return Value: 1
935 Deletes the contents of the resultset from its result source. Note that this
936 will not run DBIC cascade triggers. See L</delete_all> if you need triggers
945 my $cond = $self->_cond_for_update_delete;
947 $self->result_source->storage->delete($self->result_source->from, $cond);
955 =item Arguments: none
957 =item Return Value: 1
961 Fetches all objects and deletes them one at a time. Note that C<delete_all>
962 will run DBIC cascade triggers, while L</delete> will not.
968 $_->delete for $self->all;
976 =item Arguments: none
978 =item Return Value: $pager
982 Return Value a L<Data::Page> object for the current resultset. Only makes
983 sense for queries with a C<page> attribute.
989 my $attrs = $self->{attrs};
990 $self->throw_exception("Can't create pager for non-paged rs")
991 unless $self->{page};
992 $attrs->{rows} ||= 10;
993 return $self->{pager} ||= Data::Page->new(
994 $self->_count, $attrs->{rows}, $self->{page});
1001 =item Arguments: $page_number
1003 =item Return Value: $rs
1007 Returns a resultset for the $page_number page of the resultset on which page
1008 is called, where each page contains a number of rows equal to the 'rows'
1009 attribute set on the resultset (10 by default).
1014 my ($self, $page) = @_;
1015 my $attrs = { %{$self->{attrs}} };
1016 $attrs->{page} = $page;
1017 return (ref $self)->new($self->result_source, $attrs);
1024 =item Arguments: \%vals
1026 =item Return Value: $object
1030 Creates an object in the resultset's result class and returns it.
1035 my ($self, $values) = @_;
1036 $self->throw_exception( "new_result needs a hash" )
1037 unless (ref $values eq 'HASH');
1038 $self->throw_exception(
1039 "Can't abstract implicit construct, condition not a hash"
1040 ) if ($self->{cond} && !(ref $self->{cond} eq 'HASH'));
1042 my $alias = $self->{attrs}{alias};
1043 foreach my $key (keys %{$self->{cond}||{}}) {
1044 $new{$1} = $self->{cond}{$key} if ($key =~ m/^(?:\Q${alias}.\E)?([^.]+)$/);
1046 my $obj = $self->result_class->new(\%new);
1047 $obj->result_source($self->result_source) if $obj->can('result_source');
1055 =item Arguments: \%vals
1057 =item Return Value: $object
1061 Inserts a record into the resultset and returns the object representing it.
1063 Effectively a shortcut for C<< ->new_result(\%vals)->insert >>.
1068 my ($self, $attrs) = @_;
1069 $self->throw_exception( "create needs a hashref" )
1070 unless ref $attrs eq 'HASH';
1071 return $self->new_result($attrs)->insert;
1074 =head2 find_or_create
1078 =item Arguments: \%vals, \%attrs?
1080 =item Return Value: $object
1084 $class->find_or_create({ key => $val, ... });
1086 Searches for a record matching the search condition; if it doesn't find one,
1087 creates one and returns that instead.
1089 my $cd = $schema->resultset('CD')->find_or_create({
1091 artist => 'Massive Attack',
1092 title => 'Mezzanine',
1096 Also takes an optional C<key> attribute, to search by a specific key or unique
1097 constraint. For example:
1099 my $cd = $schema->resultset('CD')->find_or_create(
1101 artist => 'Massive Attack',
1102 title => 'Mezzanine',
1104 { key => 'artist_title' }
1107 See also L</find> and L</update_or_create>.
1111 sub find_or_create {
1113 my $attrs = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
1114 my $hash = ref $_[0] eq 'HASH' ? shift : {@_};
1115 my $exists = $self->find($hash, $attrs);
1116 return defined $exists ? $exists : $self->create($hash);
1119 =head2 update_or_create
1123 =item Arguments: \%col_values, { key => $unique_constraint }?
1125 =item Return Value: $object
1129 $class->update_or_create({ col => $val, ... });
1131 First, searches for an existing row matching one of the unique constraints
1132 (including the primary key) on the source of this resultset. If a row is
1133 found, updates it with the other given column values. Otherwise, creates a new
1136 Takes an optional C<key> attribute to search on a specific unique constraint.
1139 # In your application
1140 my $cd = $schema->resultset('CD')->update_or_create(
1142 artist => 'Massive Attack',
1143 title => 'Mezzanine',
1146 { key => 'artist_title' }
1149 If no C<key> is specified, it searches on all unique constraints defined on the
1150 source, including the primary key.
1152 If the C<key> is specified as C<primary>, it searches only on the primary key.
1154 See also L</find> and L</find_or_create>.
1158 sub update_or_create {
1160 my $attrs = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
1161 my $hash = ref $_[0] eq 'HASH' ? shift : {@_};
1163 my %unique_constraints = $self->result_source->unique_constraints;
1164 my @constraint_names = (exists $attrs->{key}
1166 : keys %unique_constraints);
1169 foreach my $name (@constraint_names) {
1170 my @unique_cols = @{ $unique_constraints{$name} };
1172 map { $_ => $hash->{$_} }
1173 grep { exists $hash->{$_} }
1176 push @unique_hashes, \%unique_hash
1177 if (scalar keys %unique_hash == scalar @unique_cols);
1180 if (@unique_hashes) {
1181 my $row = $self->single(\@unique_hashes);
1183 $row->set_columns($hash);
1189 return $self->create($hash);
1196 =item Arguments: none
1198 =item Return Value: \@cache_objects?
1202 Gets the contents of the cache for the resultset, if the cache is set.
1207 shift->{all_cache} || [];
1214 =item Arguments: \@cache_objects
1216 =item Return Value: \@cache_objects
1220 Sets the contents of the cache for the resultset. Expects an arrayref
1221 of objects of the same class as those produced by the resultset. Note that
1222 if the cache is set the resultset will return the cached objects rather
1223 than re-querying the database even if the cache attr is not set.
1228 my ( $self, $data ) = @_;
1229 $self->throw_exception("set_cache requires an arrayref")
1230 if ref $data ne 'ARRAY';
1231 my $result_class = $self->result_class;
1233 $self->throw_exception(
1234 "cannot cache object of type '$_', expected '$result_class'"
1235 ) if ref $_ ne $result_class;
1237 $self->{all_cache} = $data;
1244 =item Arguments: none
1246 =item Return Value: []
1250 Clears the cache for the resultset.
1255 shift->set_cache([]);
1258 =head2 related_resultset
1262 =item Arguments: $relationship_name
1264 =item Return Value: $resultset
1268 Returns a related resultset for the supplied relationship name.
1270 $artist_rs = $schema->resultset('CD')->related_resultset('Artist');
1274 sub related_resultset {
1275 my ( $self, $rel ) = @_;
1276 $self->{related_resultsets} ||= {};
1277 return $self->{related_resultsets}{$rel} ||= do {
1278 #warn "fetching related resultset for rel '$rel'";
1279 my $rel_obj = $self->result_source->relationship_info($rel);
1280 $self->throw_exception(
1281 "search_related: result source '" . $self->result_source->name .
1282 "' has no such relationship ${rel}")
1283 unless $rel_obj; #die Dumper $self->{attrs};
1285 my $rs = $self->search(undef, { join => $rel });
1286 my $alias = defined $rs->{attrs}{seen_join}{$rel}
1287 && $rs->{attrs}{seen_join}{$rel} > 1
1288 ? join('_', $rel, $rs->{attrs}{seen_join}{$rel})
1291 $self->result_source->schema->resultset($rel_obj->{class}
1301 =head2 throw_exception
1303 See L<DBIx::Class::Schema/throw_exception> for details.
1307 sub throw_exception {
1309 $self->result_source->schema->throw_exception(@_);
1312 # XXX: FIXME: Attributes docs need clearing up
1316 The resultset takes various attributes that modify its behavior. Here's an
1323 =item Value: ($order_by | \@order_by)
1327 Which column(s) to order the results by. This is currently passed
1328 through directly to SQL, so you can give e.g. C<year DESC> for a
1329 descending order on the column `year'.
1335 =item Value: \@columns
1339 Shortcut to request a particular set of columns to be retrieved. Adds
1340 C<me.> onto the start of any column without a C<.> in it and sets C<select>
1341 from that, then auto-populates C<as> from C<select> as normal. (You may also
1342 use the C<cols> attribute, as in earlier versions of DBIC.)
1344 =head2 include_columns
1348 =item Value: \@columns
1352 Shortcut to include additional columns in the returned results - for example
1354 $schema->resultset('CD')->search(undef, {
1355 include_columns => ['artist.name'],
1359 would return all CDs and include a 'name' column to the information
1360 passed to object inflation
1366 =item Value: \@select_columns
1370 Indicates which columns should be selected from the storage. You can use
1371 column names, or in the case of RDBMS back ends, function or stored procedure
1374 $rs = $schema->resultset('Employee')->search(undef, {
1377 { count => 'employeeid' },
1382 When you use function/stored procedure names and do not supply an C<as>
1383 attribute, the column names returned are storage-dependent. E.g. MySQL would
1384 return a column named C<count(employeeid)> in the above example.
1390 =item Value: \@inflation_names
1394 Indicates column names for object inflation. This is used in conjunction with
1395 C<select>, usually when C<select> contains one or more function or stored
1398 $rs = $schema->resultset('Employee')->search(undef, {
1401 { count => 'employeeid' }
1403 as => ['name', 'employee_count'],
1406 my $employee = $rs->first(); # get the first Employee
1408 If the object against which the search is performed already has an accessor
1409 matching a column name specified in C<as>, the value can be retrieved using
1410 the accessor as normal:
1412 my $name = $employee->name();
1414 If on the other hand an accessor does not exist in the object, you need to
1415 use C<get_column> instead:
1417 my $employee_count = $employee->get_column('employee_count');
1419 You can create your own accessors if required - see
1420 L<DBIx::Class::Manual::Cookbook> for details.
1426 =item Value: ($rel_name | \@rel_names | \%rel_names)
1430 Contains a list of relationships that should be joined for this query. For
1433 # Get CDs by Nine Inch Nails
1434 my $rs = $schema->resultset('CD')->search(
1435 { 'artist.name' => 'Nine Inch Nails' },
1436 { join => 'artist' }
1439 Can also contain a hash reference to refer to the other relation's relations.
1442 package MyApp::Schema::Track;
1443 use base qw/DBIx::Class/;
1444 __PACKAGE__->table('track');
1445 __PACKAGE__->add_columns(qw/trackid cd position title/);
1446 __PACKAGE__->set_primary_key('trackid');
1447 __PACKAGE__->belongs_to(cd => 'MyApp::Schema::CD');
1450 # In your application
1451 my $rs = $schema->resultset('Artist')->search(
1452 { 'track.title' => 'Teardrop' },
1454 join => { cd => 'track' },
1455 order_by => 'artist.name',
1459 If the same join is supplied twice, it will be aliased to <rel>_2 (and
1460 similarly for a third time). For e.g.
1462 my $rs = $schema->resultset('Artist')->search({
1463 'cds.title' => 'Down to Earth',
1464 'cds_2.title' => 'Popular',
1466 join => [ qw/cds cds/ ],
1469 will return a set of all artists that have both a cd with title 'Down
1470 to Earth' and a cd with title 'Popular'.
1472 If you want to fetch related objects from other tables as well, see C<prefetch>
1479 =item Value: ($rel_name | \@rel_names | \%rel_names)
1483 Contains one or more relationships that should be fetched along with the main
1484 query (when they are accessed afterwards they will have already been
1485 "prefetched"). This is useful for when you know you will need the related
1486 objects, because it saves at least one query:
1488 my $rs = $schema->resultset('Tag')->search(
1497 The initial search results in SQL like the following:
1499 SELECT tag.*, cd.*, artist.* FROM tag
1500 JOIN cd ON tag.cd = cd.cdid
1501 JOIN artist ON cd.artist = artist.artistid
1503 L<DBIx::Class> has no need to go back to the database when we access the
1504 C<cd> or C<artist> relationships, which saves us two SQL statements in this
1507 Simple prefetches will be joined automatically, so there is no need
1508 for a C<join> attribute in the above search. If you're prefetching to
1509 depth (e.g. { cd => { artist => 'label' } or similar), you'll need to
1510 specify the join as well.
1512 C<prefetch> can be used with the following relationship types: C<belongs_to>,
1513 C<has_one> (or if you're using C<add_relationship>, any relationship declared
1514 with an accessor type of 'single' or 'filter').
1520 =item Value: \@from_clause
1524 The C<from> attribute gives you manual control over the C<FROM> clause of SQL
1525 statements generated by L<DBIx::Class>, allowing you to express custom C<JOIN>
1528 NOTE: Use this on your own risk. This allows you to shoot off your foot!
1529 C<join> will usually do what you need and it is strongly recommended that you
1530 avoid using C<from> unless you cannot achieve the desired result using C<join>.
1532 In simple terms, C<from> works as follows:
1535 { <alias> => <table>, -join_type => 'inner|left|right' }
1536 [] # nested JOIN (optional)
1537 { <table.column> => <foreign_table.foreign_key> }
1543 ON <table.column> = <foreign_table.foreign_key>
1545 An easy way to follow the examples below is to remember the following:
1547 Anything inside "[]" is a JOIN
1548 Anything inside "{}" is a condition for the enclosing JOIN
1550 The following examples utilize a "person" table in a family tree application.
1551 In order to express parent->child relationships, this table is self-joined:
1553 # Person->belongs_to('father' => 'Person');
1554 # Person->belongs_to('mother' => 'Person');
1556 C<from> can be used to nest joins. Here we return all children with a father,
1557 then search against all mothers of those children:
1559 $rs = $schema->resultset('Person')->search(
1562 alias => 'mother', # alias columns in accordance with "from"
1564 { mother => 'person' },
1567 { child => 'person' },
1569 { father => 'person' },
1570 { 'father.person_id' => 'child.father_id' }
1573 { 'mother.person_id' => 'child.mother_id' }
1580 # SELECT mother.* FROM person mother
1583 # JOIN person father
1584 # ON ( father.person_id = child.father_id )
1586 # ON ( mother.person_id = child.mother_id )
1588 The type of any join can be controlled manually. To search against only people
1589 with a father in the person table, we could explicitly use C<INNER JOIN>:
1591 $rs = $schema->resultset('Person')->search(
1594 alias => 'child', # alias columns in accordance with "from"
1596 { child => 'person' },
1598 { father => 'person', -join_type => 'inner' },
1599 { 'father.id' => 'child.father_id' }
1606 # SELECT child.* FROM person child
1607 # INNER JOIN person father ON child.father_id = father.id
1617 Makes the resultset paged and specifies the page to retrieve. Effectively
1618 identical to creating a non-pages resultset and then calling ->page($page)
1629 Specifes the maximum number of rows for direct retrieval or the number of
1630 rows per page if the page attribute or method is used.
1636 =item Value: \@columns
1640 A arrayref of columns to group by. Can include columns of joined tables.
1642 group_by => [qw/ column1 column2 ... /]
1648 =item Value: $condition
1652 HAVING is a select statement attribute that is applied between GROUP BY and
1653 ORDER BY. It is applied to the after the grouping calculations have been
1656 having => { 'count(employee)' => { '>=', 100 } }
1662 =item Value: (0 | 1)
1666 Set to 1 to group by all columns.
1670 Set to 1 to cache search results. This prevents extra SQL queries if you
1671 revisit rows in your ResultSet:
1673 my $resultset = $schema->resultset('Artist')->search( undef, { cache => 1 } );
1675 while( my $artist = $resultset->next ) {
1679 $rs->first; # without cache, this would issue a query
1681 By default, searches are not cached.
1683 For more examples of using these attributes, see
1684 L<DBIx::Class::Manual::Cookbook>.