1 package DBIx::Class::ResultSet;
9 use Carp::Clan qw/^DBIx::Class/;
12 use DBIx::Class::ResultSetColumn;
13 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) = @_;
91 $attrs->{rows} ||= 10;
92 $attrs->{offset} ||= 0;
93 $attrs->{offset} += ($attrs->{rows} * ($attrs->{page} - 1));
96 $attrs->{alias} ||= 'me';
99 result_source => $source,
100 result_class => $attrs->{result_class} || $source->result_class,
101 cond => $attrs->{where},
116 =item Arguments: $cond, \%attrs?
118 =item Return Value: $resultset (scalar context), @row_objs (list context)
122 my @cds = $cd_rs->search({ year => 2001 }); # "... WHERE year = 2001"
123 my $new_rs = $cd_rs->search({ year => 2005 });
125 my $new_rs = $cd_rs->search([ { year => 2005 }, { year => 2004 } ]);
126 # year = 2005 OR year = 2004
128 If you need to pass in additional attributes but no additional condition,
129 call it as C<search(undef, \%attrs)>.
131 # "SELECT name, artistid FROM $artist_table"
132 my @all_artists = $schema->resultset('Artist')->search(undef, {
133 columns => [qw/name artistid/],
136 For a list of attributes that can be passed to C<search>, see L</ATTRIBUTES>. For more examples of using this function, see L<Searching|DBIx::Class::Manual::Cookbook/Searching>.
142 my $rs = $self->search_rs( @_ );
143 return (wantarray ? $rs->all : $rs);
150 =item Arguments: $cond, \%attrs?
152 =item Return Value: $resultset
156 This method does the same exact thing as search() except it will
157 always return a resultset, even in list context.
166 unless (@_) { # no search, effectively just a clone
167 $rows = $self->get_cache;
171 $attrs = pop(@_) if @_ > 1 and ref $_[$#_] eq 'HASH';
172 my $our_attrs = { %{$self->{attrs}} };
173 my $having = delete $our_attrs->{having};
175 # merge new attrs into inherited
176 foreach my $key (qw/join prefetch/) {
177 next unless exists $attrs->{$key};
178 $our_attrs->{$key} = $self->_merge_attr($our_attrs->{$key}, delete $attrs->{$key});
181 my $new_attrs = { %{$our_attrs}, %{$attrs} };
184 (@_ == 1 || ref $_[0] eq "HASH")
188 ? $self->throw_exception("Odd number of arguments to search")
195 if (defined $where) {
196 $new_attrs->{where} = (
197 defined $new_attrs->{where}
200 ref $_ eq 'ARRAY' ? [ -or => $_ ] : $_
201 } $where, $new_attrs->{where}
207 if (defined $having) {
208 $new_attrs->{having} = (
209 defined $new_attrs->{having}
212 ref $_ eq 'ARRAY' ? [ -or => $_ ] : $_
213 } $having, $new_attrs->{having}
219 my $rs = (ref $self)->new($self->result_source, $new_attrs);
221 $rs->set_cache($rows);
226 =head2 search_literal
230 =item Arguments: $sql_fragment, @bind_values
232 =item Return Value: $resultset (scalar context), @row_objs (list context)
236 my @cds = $cd_rs->search_literal('year = ? AND title = ?', qw/2001 Reload/);
237 my $newrs = $artist_rs->search_literal('name = ?', 'Metallica');
239 Pass a literal chunk of SQL to be added to the conditional part of the
245 my ($self, $cond, @vals) = @_;
246 my $attrs = (ref $vals[$#vals] eq 'HASH' ? { %{ pop(@vals) } } : {});
247 $attrs->{bind} = [ @{$self->{attrs}{bind}||[]}, @vals ];
248 return $self->search(\$cond, $attrs);
255 =item Arguments: @values | \%cols, \%attrs?
257 =item Return Value: $row_object
261 Finds a row based on its primary key or unique constraint. For example, to find
262 a row by its primary key:
264 my $cd = $schema->resultset('CD')->find(5);
266 You can also find a row by a specific unique constraint using the C<key>
267 attribute. For example:
269 my $cd = $schema->resultset('CD')->find('Massive Attack', 'Mezzanine', {
270 key => 'cd_artist_title'
273 Additionally, you can specify the columns explicitly by name:
275 my $cd = $schema->resultset('CD')->find(
277 artist => 'Massive Attack',
278 title => 'Mezzanine',
280 { key => 'cd_artist_title' }
283 If the C<key> is specified as C<primary>, it searches only on the primary key.
285 If no C<key> is specified, it searches on all unique constraints defined on the
286 source, including the primary key.
288 If your table does not have a primary key, you B<must> provide a value for the
289 C<key> attribute matching one of the unique constraints on the source.
291 See also L</find_or_create> and L</update_or_create>. For information on how to
292 declare unique constraints, see
293 L<DBIx::Class::ResultSource/add_unique_constraint>.
299 my $attrs = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
301 # Default to the primary key, but allow a specific key
302 my @cols = exists $attrs->{key}
303 ? $self->result_source->unique_constraint_columns($attrs->{key})
304 : $self->result_source->primary_columns;
305 $self->throw_exception(
306 "Can't find unless a primary key is defined or unique constraint is specified"
309 # Parse out a hashref from input
311 if (ref $_[0] eq 'HASH') {
312 $input_query = { %{$_[0]} };
314 elsif (@_ == @cols) {
316 @{$input_query}{@cols} = @_;
319 # Compatibility: Allow e.g. find(id => $value)
320 carp "Find by key => value deprecated; please use a hashref instead";
324 my @unique_queries = $self->_unique_queries($input_query, $attrs);
326 # Handle cases where the ResultSet defines the query, or where the user is
328 my $query = @unique_queries ? \@unique_queries : $input_query;
332 my $rs = $self->search($query, $attrs);
333 return keys %{$rs->_resolved_attrs->{collapse}} ? $rs->next : $rs->single;
336 return keys %{$self->_resolved_attrs->{collapse}}
337 ? $self->search($query)->next
338 : $self->single($query);
344 # Build a list of queries which satisfy unique constraints.
346 sub _unique_queries {
347 my ($self, $query, $attrs) = @_;
349 my $alias = $self->{attrs}{alias};
350 my @constraint_names = exists $attrs->{key}
352 : $self->result_source->unique_constraint_names;
355 foreach my $name (@constraint_names) {
356 my @unique_cols = $self->result_source->unique_constraint_columns($name);
357 my $unique_query = $self->_build_unique_query($query, \@unique_cols);
359 my $num_query = scalar keys %$unique_query;
360 next unless $num_query;
362 # Add the ResultSet's alias
363 foreach my $col (grep { ! m/\./ } keys %$unique_query) {
364 $unique_query->{"$alias.$col"} = delete $unique_query->{$col};
367 # XXX: Assuming quite a bit about $self->{attrs}{where}
368 my $num_cols = scalar @unique_cols;
369 my $num_where = exists $self->{attrs}{where}
370 ? scalar keys %{ $self->{attrs}{where} }
372 push @unique_queries, $unique_query
373 if $num_query + $num_where == $num_cols;
376 return @unique_queries;
379 # _build_unique_query
381 # Constrain the specified query hash based on the specified column names.
383 sub _build_unique_query {
384 my ($self, $query, $unique_cols) = @_;
387 map { $_ => $query->{$_} }
388 grep { exists $query->{$_} }
393 =head2 search_related
397 =item Arguments: $rel, $cond, \%attrs?
399 =item Return Value: $new_resultset
403 $new_rs = $cd_rs->search_related('artist', {
407 Searches the specified relationship, optionally specifying a condition and
408 attributes for matching records. See L</ATTRIBUTES> for more information.
413 return shift->related_resultset(shift)->search(@_);
420 =item Arguments: none
422 =item Return Value: $cursor
426 Returns a storage-driven cursor to the given resultset. See
427 L<DBIx::Class::Cursor> for more information.
434 my $attrs = { %{$self->_resolved_attrs} };
435 return $self->{cursor}
436 ||= $self->result_source->storage->select($attrs->{from}, $attrs->{select},
437 $attrs->{where},$attrs);
444 =item Arguments: $cond?
446 =item Return Value: $row_object?
450 my $cd = $schema->resultset('CD')->single({ year => 2001 });
452 Inflates the first result without creating a cursor if the resultset has
453 any records in it; if not returns nothing. Used by L</find> as an optimisation.
455 Can optionally take an additional condition *only* - this is a fast-code-path
456 method; if you need to add extra joins or similar call ->search and then
457 ->single without a condition on the $rs returned from that.
462 my ($self, $where) = @_;
463 my $attrs = { %{$self->_resolved_attrs} };
465 if (defined $attrs->{where}) {
468 [ map { ref $_ eq 'ARRAY' ? [ -or => $_ ] : $_ }
469 $where, delete $attrs->{where} ]
472 $attrs->{where} = $where;
476 # XXX: Disabled since it doesn't infer uniqueness in all cases
477 # unless ($self->_is_unique_query($attrs->{where})) {
478 # carp "Query not guaranteed to return a single row"
479 # . "; please declare your unique constraints or use search instead";
482 my @data = $self->result_source->storage->select_single(
483 $attrs->{from}, $attrs->{select},
484 $attrs->{where}, $attrs
487 return (@data ? $self->_construct_object(@data) : ());
492 # Try to determine if the specified query is guaranteed to be unique, based on
493 # the declared unique constraints.
495 sub _is_unique_query {
496 my ($self, $query) = @_;
498 my $collapsed = $self->_collapse_query($query);
499 my $alias = $self->{attrs}{alias};
501 foreach my $name ($self->result_source->unique_constraint_names) {
502 my @unique_cols = map {
504 } $self->result_source->unique_constraint_columns($name);
506 # Count the values for each unique column
507 my %seen = map { $_ => 0 } @unique_cols;
509 foreach my $key (keys %$collapsed) {
510 my $aliased = $key =~ /\./ ? $key : "$alias.$key";
511 next unless exists $seen{$aliased}; # Additional constraints are okay
512 $seen{$aliased} = scalar keys %{ $collapsed->{$key} };
515 # If we get 0 or more than 1 value for a column, it's not necessarily unique
516 return 1 unless grep { $_ != 1 } values %seen;
524 # Recursively collapse the query, accumulating values for each column.
526 sub _collapse_query {
527 my ($self, $query, $collapsed) = @_;
531 if (ref $query eq 'ARRAY') {
532 foreach my $subquery (@$query) {
533 next unless ref $subquery; # -or
534 # warn "ARRAY: " . Dumper $subquery;
535 $collapsed = $self->_collapse_query($subquery, $collapsed);
538 elsif (ref $query eq 'HASH') {
539 if (keys %$query and (keys %$query)[0] eq '-and') {
540 foreach my $subquery (@{$query->{-and}}) {
541 # warn "HASH: " . Dumper $subquery;
542 $collapsed = $self->_collapse_query($subquery, $collapsed);
546 # warn "LEAF: " . Dumper $query;
547 foreach my $col (keys %$query) {
548 my $value = $query->{$col};
549 $collapsed->{$col}{$value}++;
561 =item Arguments: $cond?
563 =item Return Value: $resultsetcolumn
567 my $max_length = $rs->get_column('length')->max;
569 Returns a L<DBIx::Class::ResultSetColumn> instance for a column of the ResultSet.
574 my ($self, $column) = @_;
575 my $new = DBIx::Class::ResultSetColumn->new($self, $column);
583 =item Arguments: $cond, \%attrs?
585 =item Return Value: $resultset (scalar context), @row_objs (list context)
589 # WHERE title LIKE '%blue%'
590 $cd_rs = $rs->search_like({ title => '%blue%'});
592 Performs a search, but uses C<LIKE> instead of C<=> as the condition. Note
593 that this is simply a convenience method. You most likely want to use
594 L</search> with specific operators.
596 For more information, see L<DBIx::Class::Manual::Cookbook>.
602 my $attrs = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
603 my $query = ref $_[0] eq 'HASH' ? { %{shift()} }: {@_};
604 $query->{$_} = { 'like' => $query->{$_} } for keys %$query;
605 return $class->search($query, { %$attrs });
612 =item Arguments: $first, $last
614 =item Return Value: $resultset (scalar context), @row_objs (list context)
618 Returns a resultset or object list representing a subset of elements from the
619 resultset slice is called on. Indexes are from 0, i.e., to get the first
622 my ($one, $two, $three) = $rs->slice(0, 2);
627 my ($self, $min, $max) = @_;
628 my $attrs = {}; # = { %{ $self->{attrs} || {} } };
629 $attrs->{offset} = $self->{attrs}{offset} || 0;
630 $attrs->{offset} += $min;
631 $attrs->{rows} = ($max ? ($max - $min + 1) : 1);
632 return $self->search(undef(), $attrs);
633 #my $slice = (ref $self)->new($self->result_source, $attrs);
634 #return (wantarray ? $slice->all : $slice);
641 =item Arguments: none
643 =item Return Value: $result?
647 Returns the next element in the resultset (C<undef> is there is none).
649 Can be used to efficiently iterate over records in the resultset:
651 my $rs = $schema->resultset('CD')->search;
652 while (my $cd = $rs->next) {
656 Note that you need to store the resultset object, and call C<next> on it.
657 Calling C<< resultset('Table')->next >> repeatedly will always return the
658 first record from the resultset.
664 if (my $cache = $self->get_cache) {
665 $self->{all_cache_position} ||= 0;
666 return $cache->[$self->{all_cache_position}++];
668 if ($self->{attrs}{cache}) {
669 $self->{all_cache_position} = 1;
670 return ($self->all)[0];
673 exists $self->{stashed_row}
674 ? @{delete $self->{stashed_row}}
675 : $self->cursor->next
677 return unless (@row);
678 return $self->_construct_object(@row);
681 sub _construct_object {
682 my ($self, @row) = @_;
683 my $info = $self->_collapse_result($self->{_attrs}{as}, \@row);
684 my $new = $self->result_class->inflate_result($self->result_source, @$info);
685 $new = $self->{_attrs}{record_filter}->($new)
686 if exists $self->{_attrs}{record_filter};
690 sub _collapse_result {
691 my ($self, $as, $row, $prefix) = @_;
696 foreach my $this_as (@$as) {
697 my $val = shift @copy;
698 if (defined $prefix) {
699 if ($this_as =~ m/^\Q${prefix}.\E(.+)$/) {
701 $remain =~ /^(?:(.*)\.)?([^.]+)$/;
702 $const{$1||''}{$2} = $val;
705 $this_as =~ /^(?:(.*)\.)?([^.]+)$/;
706 $const{$1||''}{$2} = $val;
710 my $alias = $self->{attrs}{alias};
711 my $info = [ {}, {} ];
712 foreach my $key (keys %const) {
713 if (length $key && $key ne $alias) {
715 my @parts = split(/\./, $key);
716 foreach my $p (@parts) {
717 $target = $target->[1]->{$p} ||= [];
719 $target->[0] = $const{$key};
721 $info->[0] = $const{$key};
726 if (defined $prefix) {
728 m/^\Q${prefix}.\E(.+)$/ ? ($1) : ()
729 } keys %{$self->{_attrs}{collapse}}
731 @collapse = keys %{$self->{_attrs}{collapse}};
735 my ($c) = sort { length $a <=> length $b } @collapse;
737 foreach my $p (split(/\./, $c)) {
738 $target = $target->[1]->{$p} ||= [];
740 my $c_prefix = (defined($prefix) ? "${prefix}.${c}" : $c);
741 my @co_key = @{$self->{_attrs}{collapse}{$c_prefix}};
742 my $tree = $self->_collapse_result($as, $row, $c_prefix);
743 my %co_check = map { ($_, $tree->[0]->{$_}); } @co_key;
749 !defined($tree->[0]->{$_}) || $co_check{$_} ne $tree->[0]->{$_}
754 last unless (@raw = $self->cursor->next);
755 $row = $self->{stashed_row} = \@raw;
756 $tree = $self->_collapse_result($as, $row, $c_prefix);
758 @$target = (@final ? @final : [ {}, {} ]);
759 # single empty result to indicate an empty prefetched has_many
762 #print "final info: " . Dumper($info);
770 =item Arguments: $result_source?
772 =item Return Value: $result_source
776 An accessor for the primary ResultSource object from which this ResultSet
783 =item Arguments: $result_class?
785 =item Return Value: $result_class
789 An accessor for the class to use when creating row objects. Defaults to
790 C<< result_source->result_class >> - which in most cases is the name of the
791 L<"table"|DBIx::Class::Manual::Glossary/"ResultSource"> class.
800 =item Arguments: $cond, \%attrs??
802 =item Return Value: $count
806 Performs an SQL C<COUNT> with the same query as the resultset was built
807 with to find the number of elements. If passed arguments, does a search
808 on the resultset and counts the results of that.
810 Note: When using C<count> with C<group_by>, L<DBIX::Class> emulates C<GROUP BY>
811 using C<COUNT( DISTINCT( columns ) )>. Some databases (notably SQLite) do
812 not support C<DISTINCT> with multiple columns. If you are using such a
813 database, you should only use columns from the main table in your C<group_by>
820 return $self->search(@_)->count if @_ and defined $_[0];
821 return scalar @{ $self->get_cache } if $self->get_cache;
822 my $count = $self->_count;
823 return 0 unless $count;
825 $count -= $self->{attrs}{offset} if $self->{attrs}{offset};
826 $count = $self->{attrs}{rows} if
827 $self->{attrs}{rows} and $self->{attrs}{rows} < $count;
831 sub _count { # Separated out so pager can get the full count
833 my $select = { count => '*' };
835 my $attrs = { %{$self->_resolved_attrs} };
836 if (my $group_by = delete $attrs->{group_by}) {
837 delete $attrs->{having};
838 my @distinct = (ref $group_by ? @$group_by : ($group_by));
839 # todo: try CONCAT for multi-column pk
840 my @pk = $self->result_source->primary_columns;
842 my $alias = $attrs->{alias};
843 foreach my $column (@distinct) {
844 if ($column =~ qr/^(?:\Q${alias}.\E)?$pk[0]$/) {
845 @distinct = ($column);
851 $select = { count => { distinct => \@distinct } };
854 $attrs->{select} = $select;
855 $attrs->{as} = [qw/count/];
857 # offset, order by and page are not needed to count. record_filter is cdbi
858 delete $attrs->{$_} for qw/rows offset order_by page pager record_filter/;
860 my $tmp_rs = (ref $self)->new($self->result_source, $attrs);
861 my ($count) = $tmp_rs->cursor->next;
869 =item Arguments: $sql_fragment, @bind_values
871 =item Return Value: $count
875 Counts the results in a literal query. Equivalent to calling L</search_literal>
876 with the passed arguments, then L</count>.
880 sub count_literal { shift->search_literal(@_)->count; }
886 =item Arguments: none
888 =item Return Value: @objects
892 Returns all elements in the resultset. Called implicitly if the resultset
893 is returned in list context.
899 return @{ $self->get_cache } if $self->get_cache;
903 # TODO: don't call resolve here
904 if (keys %{$self->_resolved_attrs->{collapse}}) {
905 # if ($self->{attrs}{prefetch}) {
906 # Using $self->cursor->all is really just an optimisation.
907 # If we're collapsing has_many prefetches it probably makes
908 # very little difference, and this is cleaner than hacking
909 # _construct_object to survive the approach
910 my @row = $self->cursor->next;
912 push(@obj, $self->_construct_object(@row));
913 @row = (exists $self->{stashed_row}
914 ? @{delete $self->{stashed_row}}
915 : $self->cursor->next);
918 @obj = map { $self->_construct_object(@$_) } $self->cursor->all;
921 $self->set_cache(\@obj) if $self->{attrs}{cache};
929 =item Arguments: none
931 =item Return Value: $self
935 Resets the resultset's cursor, so you can iterate through the elements again.
941 delete $self->{_attrs} if exists $self->{_attrs};
942 $self->{all_cache_position} = 0;
943 $self->cursor->reset;
951 =item Arguments: none
953 =item Return Value: $object?
957 Resets the resultset and returns an object for the first result (if the
958 resultset returns anything).
963 return $_[0]->reset->next;
966 # _cond_for_update_delete
968 # update/delete require the condition to be modified to handle
969 # the differing SQL syntax available. This transforms the $self->{cond}
970 # appropriately, returning the new condition.
972 sub _cond_for_update_delete {
976 # No-op. No condition, we're updating/deleting everything
977 return $cond unless ref $self->{cond};
979 if (ref $self->{cond} eq 'ARRAY') {
983 foreach my $key (keys %{$_}) {
985 $hash{$1} = $_->{$key};
991 elsif (ref $self->{cond} eq 'HASH') {
992 if ((keys %{$self->{cond}})[0] eq '-and') {
995 my @cond = @{$self->{cond}{-and}};
996 for (my $i = 0; $i < @cond; $i++) {
997 my $entry = $cond[$i];
1000 if (ref $entry eq 'HASH') {
1001 foreach my $key (keys %{$entry}) {
1003 $hash{$1} = $entry->{$key};
1007 $entry =~ /([^.]+)$/;
1008 $hash{$1} = $cond[++$i];
1011 push @{$cond->{-and}}, \%hash;
1015 foreach my $key (keys %{$self->{cond}}) {
1017 $cond->{$1} = $self->{cond}{$key};
1022 $self->throw_exception(
1023 "Can't update/delete on resultset with condition unless hash or array"
1035 =item Arguments: \%values
1037 =item Return Value: $storage_rv
1041 Sets the specified columns in the resultset to the supplied values in a
1042 single query. Return value will be true if the update succeeded or false
1043 if no records were updated; exact type of success value is storage-dependent.
1048 my ($self, $values) = @_;
1049 $self->throw_exception("Values for update must be a hash")
1050 unless ref $values eq 'HASH';
1052 my $cond = $self->_cond_for_update_delete;
1054 return $self->result_source->storage->update(
1055 $self->result_source->from, $values, $cond
1063 =item Arguments: \%values
1065 =item Return Value: 1
1069 Fetches all objects and updates them one at a time. Note that C<update_all>
1070 will run DBIC cascade triggers, while L</update> will not.
1075 my ($self, $values) = @_;
1076 $self->throw_exception("Values for update must be a hash")
1077 unless ref $values eq 'HASH';
1078 foreach my $obj ($self->all) {
1079 $obj->set_columns($values)->update;
1088 =item Arguments: none
1090 =item Return Value: 1
1094 Deletes the contents of the resultset from its result source. Note that this
1095 will not run DBIC cascade triggers. See L</delete_all> if you need triggers
1103 my $cond = $self->_cond_for_update_delete;
1105 $self->result_source->storage->delete($self->result_source->from, $cond);
1113 =item Arguments: none
1115 =item Return Value: 1
1119 Fetches all objects and deletes them one at a time. Note that C<delete_all>
1120 will run DBIC cascade triggers, while L</delete> will not.
1126 $_->delete for $self->all;
1134 =item Arguments: none
1136 =item Return Value: $pager
1140 Return Value a L<Data::Page> object for the current resultset. Only makes
1141 sense for queries with a C<page> attribute.
1147 my $attrs = $self->{attrs};
1148 $self->throw_exception("Can't create pager for non-paged rs")
1149 unless $self->{attrs}{page};
1150 $attrs->{rows} ||= 10;
1151 return $self->{pager} ||= Data::Page->new(
1152 $self->_count, $attrs->{rows}, $self->{attrs}{page});
1159 =item Arguments: $page_number
1161 =item Return Value: $rs
1165 Returns a resultset for the $page_number page of the resultset on which page
1166 is called, where each page contains a number of rows equal to the 'rows'
1167 attribute set on the resultset (10 by default).
1172 my ($self, $page) = @_;
1173 return (ref $self)->new($self->result_source, { %{$self->{attrs}}, page => $page });
1180 =item Arguments: \%vals
1182 =item Return Value: $object
1186 Creates an object in the resultset's result class and returns it.
1191 my ($self, $values) = @_;
1192 $self->throw_exception( "new_result needs a hash" )
1193 unless (ref $values eq 'HASH');
1194 $self->throw_exception(
1195 "Can't abstract implicit construct, condition not a hash"
1196 ) if ($self->{cond} && !(ref $self->{cond} eq 'HASH'));
1198 my $alias = $self->{attrs}{alias};
1199 foreach my $key (keys %{$self->{cond}||{}}) {
1200 $new{$1} = $self->{cond}{$key} if ($key =~ m/^(?:\Q${alias}.\E)?([^.]+)$/);
1202 my $obj = $self->result_class->new(\%new);
1203 $obj->result_source($self->result_source) if $obj->can('result_source');
1211 =item Arguments: \%vals, \%attrs?
1213 =item Return Value: $object
1217 Find an existing record from this resultset. If none exists, instantiate a new
1218 result object and return it. The object will not be saved into your storage
1219 until you call L<DBIx::Class::Row/insert> on it.
1221 If you want objects to be saved immediately, use L</find_or_create> instead.
1227 my $attrs = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
1228 my $hash = ref $_[0] eq 'HASH' ? shift : {@_};
1229 my $exists = $self->find($hash, $attrs);
1230 return defined $exists ? $exists : $self->new_result($hash);
1237 =item Arguments: \%vals
1239 =item Return Value: $object
1243 Inserts a record into the resultset and returns the object representing it.
1245 Effectively a shortcut for C<< ->new_result(\%vals)->insert >>.
1250 my ($self, $attrs) = @_;
1251 $self->throw_exception( "create needs a hashref" )
1252 unless ref $attrs eq 'HASH';
1253 return $self->new_result($attrs)->insert;
1256 =head2 find_or_create
1260 =item Arguments: \%vals, \%attrs?
1262 =item Return Value: $object
1266 $class->find_or_create({ key => $val, ... });
1268 Tries to find a record based on its primary key or unique constraint; if none
1269 is found, creates one and returns that instead.
1271 my $cd = $schema->resultset('CD')->find_or_create({
1273 artist => 'Massive Attack',
1274 title => 'Mezzanine',
1278 Also takes an optional C<key> attribute, to search by a specific key or unique
1279 constraint. For example:
1281 my $cd = $schema->resultset('CD')->find_or_create(
1283 artist => 'Massive Attack',
1284 title => 'Mezzanine',
1286 { key => 'cd_artist_title' }
1289 See also L</find> and L</update_or_create>. For information on how to declare
1290 unique constraints, see L<DBIx::Class::ResultSource/add_unique_constraint>.
1294 sub find_or_create {
1296 my $attrs = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
1297 my $hash = ref $_[0] eq 'HASH' ? shift : {@_};
1298 my $exists = $self->find($hash, $attrs);
1299 return defined $exists ? $exists : $self->create($hash);
1302 =head2 update_or_create
1306 =item Arguments: \%col_values, { key => $unique_constraint }?
1308 =item Return Value: $object
1312 $class->update_or_create({ col => $val, ... });
1314 First, searches for an existing row matching one of the unique constraints
1315 (including the primary key) on the source of this resultset. If a row is
1316 found, updates it with the other given column values. Otherwise, creates a new
1319 Takes an optional C<key> attribute to search on a specific unique constraint.
1322 # In your application
1323 my $cd = $schema->resultset('CD')->update_or_create(
1325 artist => 'Massive Attack',
1326 title => 'Mezzanine',
1329 { key => 'cd_artist_title' }
1332 If no C<key> is specified, it searches on all unique constraints defined on the
1333 source, including the primary key.
1335 If the C<key> is specified as C<primary>, it searches only on the primary key.
1337 See also L</find> and L</find_or_create>. For information on how to declare
1338 unique constraints, see L<DBIx::Class::ResultSource/add_unique_constraint>.
1342 sub update_or_create {
1344 my $attrs = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
1345 my $cond = ref $_[0] eq 'HASH' ? shift : {@_};
1347 my $row = $self->find($cond, $attrs);
1349 $row->update($cond);
1353 return $self->create($cond);
1360 =item Arguments: none
1362 =item Return Value: \@cache_objects?
1366 Gets the contents of the cache for the resultset, if the cache is set.
1378 =item Arguments: \@cache_objects
1380 =item Return Value: \@cache_objects
1384 Sets the contents of the cache for the resultset. Expects an arrayref
1385 of objects of the same class as those produced by the resultset. Note that
1386 if the cache is set the resultset will return the cached objects rather
1387 than re-querying the database even if the cache attr is not set.
1392 my ( $self, $data ) = @_;
1393 $self->throw_exception("set_cache requires an arrayref")
1394 if defined($data) && (ref $data ne 'ARRAY');
1395 $self->{all_cache} = $data;
1402 =item Arguments: none
1404 =item Return Value: []
1408 Clears the cache for the resultset.
1413 shift->set_cache(undef);
1416 =head2 related_resultset
1420 =item Arguments: $relationship_name
1422 =item Return Value: $resultset
1426 Returns a related resultset for the supplied relationship name.
1428 $artist_rs = $schema->resultset('CD')->related_resultset('Artist');
1432 sub related_resultset {
1433 my ($self, $rel) = @_;
1435 $self->{related_resultsets} ||= {};
1436 return $self->{related_resultsets}{$rel} ||= do {
1437 my $rel_obj = $self->result_source->relationship_info($rel);
1439 $self->throw_exception(
1440 "search_related: result source '" . $self->result_source->name .
1441 "' has no such relationship $rel")
1444 my ($from,$seen) = $self->_resolve_from($rel);
1446 my $join_count = $seen->{$rel};
1447 my $alias = ($join_count > 1 ? join('_', $rel, $join_count) : $rel);
1449 $self->result_source->schema->resultset($rel_obj->{class})->search_rs(
1451 %{$self->{attrs}||{}},
1457 where => $self->{cond},
1465 my ($self, $extra_join) = @_;
1466 my $source = $self->result_source;
1467 my $attrs = $self->{attrs};
1469 my $from = $attrs->{from}
1470 || [ { $attrs->{alias} => $source->from } ];
1472 my $seen = { %{$attrs->{seen_join}||{}} };
1474 my $join = ($attrs->{join}
1475 ? [ $attrs->{join}, $extra_join ]
1479 ($join ? $source->resolve_join($join, $attrs->{alias}, $seen) : ()),
1482 return ($from,$seen);
1485 sub _resolved_attrs {
1487 return $self->{_attrs} if $self->{_attrs};
1489 my $attrs = { %{$self->{attrs}||{}} };
1490 my $source = $self->{result_source};
1491 my $alias = $attrs->{alias};
1493 $attrs->{columns} ||= delete $attrs->{cols} if exists $attrs->{cols};
1494 if ($attrs->{columns}) {
1495 delete $attrs->{as};
1496 } elsif (!$attrs->{select}) {
1497 $attrs->{columns} = [ $source->columns ];
1502 ? (ref $attrs->{select} eq 'ARRAY'
1503 ? [ @{$attrs->{select}} ]
1504 : [ $attrs->{select} ])
1505 : [ map { m/\./ ? $_ : "${alias}.$_" } @{delete $attrs->{columns}} ]
1509 ? (ref $attrs->{as} eq 'ARRAY'
1510 ? [ @{$attrs->{as}} ]
1512 : [ map { m/^\Q${alias}.\E(.+)$/ ? $1 : $_ } @{$attrs->{select}} ]
1516 if ($adds = delete $attrs->{include_columns}) {
1517 $adds = [$adds] unless ref $adds eq 'ARRAY';
1518 push(@{$attrs->{select}}, @$adds);
1519 push(@{$attrs->{as}}, map { m/([^.]+)$/; $1 } @$adds);
1521 if ($adds = delete $attrs->{'+select'}) {
1522 $adds = [$adds] unless ref $adds eq 'ARRAY';
1523 push(@{$attrs->{select}},
1524 map { /\./ || ref $_ ? $_ : "${alias}.$_" } @$adds);
1526 if (my $adds = delete $attrs->{'+as'}) {
1527 $adds = [$adds] unless ref $adds eq 'ARRAY';
1528 push(@{$attrs->{as}}, @$adds);
1531 $attrs->{from} ||= [ { 'me' => $source->from } ];
1533 if (exists $attrs->{join} || exists $attrs->{prefetch}) {
1534 my $join = delete $attrs->{join} || {};
1536 if (defined $attrs->{prefetch}) {
1537 $join = $self->_merge_attr(
1538 $join, $attrs->{prefetch}
1542 $attrs->{from} = # have to copy here to avoid corrupting the original
1545 $source->resolve_join($join, $alias, { %{$attrs->{seen_join}||{}} })
1549 $attrs->{group_by} ||= $attrs->{select} if delete $attrs->{distinct};
1550 if ($attrs->{order_by}) {
1551 $attrs->{order_by} = (ref($attrs->{order_by}) eq 'ARRAY'
1552 ? [ @{$attrs->{order_by}} ]
1553 : [ $attrs->{order_by} ]);
1555 $attrs->{order_by} = [];
1558 my $collapse = $attrs->{collapse} || {};
1559 if (my $prefetch = delete $attrs->{prefetch}) {
1560 $prefetch = $self->_merge_attr({}, $prefetch);
1562 my $seen = $attrs->{seen_join} || {};
1563 foreach my $p (ref $prefetch eq 'ARRAY' ? @$prefetch : ($prefetch)) {
1564 # bring joins back to level of current class
1565 my @prefetch = $source->resolve_prefetch(
1566 $p, $alias, $seen, \@pre_order, $collapse
1568 push(@{$attrs->{select}}, map { $_->[0] } @prefetch);
1569 push(@{$attrs->{as}}, map { $_->[1] } @prefetch);
1571 push(@{$attrs->{order_by}}, @pre_order);
1573 $attrs->{collapse} = $collapse;
1575 return $self->{_attrs} = $attrs;
1579 my ($self, $a, $b) = @_;
1580 return $b unless defined($a);
1581 return $a unless defined($b);
1583 if (ref $b eq 'HASH' && ref $a eq 'HASH') {
1584 foreach my $key (keys %{$b}) {
1585 if (exists $a->{$key}) {
1586 $a->{$key} = $self->_merge_attr($a->{$key}, $b->{$key});
1588 $a->{$key} = $b->{$key};
1593 $a = [$a] unless ref $a eq 'ARRAY';
1594 $b = [$b] unless ref $b eq 'ARRAY';
1598 foreach my $x ($a, $b) {
1599 foreach my $element (@{$x}) {
1600 if (ref $element eq 'HASH') {
1601 $hash = $self->_merge_attr($hash, $element);
1602 } elsif (ref $element eq 'ARRAY') {
1603 push(@array, @{$element});
1605 push(@array, $element) unless $b == $x
1606 && grep { $_ eq $element } @array;
1611 @array = grep { !exists $hash->{$_} } @array;
1613 return keys %{$hash}
1622 =head2 throw_exception
1624 See L<DBIx::Class::Schema/throw_exception> for details.
1628 sub throw_exception {
1630 $self->result_source->schema->throw_exception(@_);
1633 # XXX: FIXME: Attributes docs need clearing up
1637 The resultset takes various attributes that modify its behavior. Here's an
1644 =item Value: ($order_by | \@order_by)
1648 Which column(s) to order the results by. This is currently passed
1649 through directly to SQL, so you can give e.g. C<year DESC> for a
1650 descending order on the column `year'.
1652 Please note that if you have quoting enabled (see
1653 L<DBIx::Class::Storage/quote_char>) you will need to do C<\'year DESC' > to
1654 specify an order. (The scalar ref causes it to be passed as raw sql to the DB,
1655 so you will need to manually quote things as appropriate.)
1661 =item Value: \@columns
1665 Shortcut to request a particular set of columns to be retrieved. Adds
1666 C<me.> onto the start of any column without a C<.> in it and sets C<select>
1667 from that, then auto-populates C<as> from C<select> as normal. (You may also
1668 use the C<cols> attribute, as in earlier versions of DBIC.)
1670 =head2 include_columns
1674 =item Value: \@columns
1678 Shortcut to include additional columns in the returned results - for example
1680 $schema->resultset('CD')->search(undef, {
1681 include_columns => ['artist.name'],
1685 would return all CDs and include a 'name' column to the information
1686 passed to object inflation
1692 =item Value: \@select_columns
1696 Indicates which columns should be selected from the storage. You can use
1697 column names, or in the case of RDBMS back ends, function or stored procedure
1700 $rs = $schema->resultset('Employee')->search(undef, {
1703 { count => 'employeeid' },
1708 When you use function/stored procedure names and do not supply an C<as>
1709 attribute, the column names returned are storage-dependent. E.g. MySQL would
1710 return a column named C<count(employeeid)> in the above example.
1716 Indicates additional columns to be selected from storage. Works the same as
1717 L<select> but adds columns to the selection.
1725 Indicates additional column names for those added via L<+select>.
1733 =item Value: \@inflation_names
1737 Indicates column names for object inflation. This is used in conjunction with
1738 C<select>, usually when C<select> contains one or more function or stored
1741 $rs = $schema->resultset('Employee')->search(undef, {
1744 { count => 'employeeid' }
1746 as => ['name', 'employee_count'],
1749 my $employee = $rs->first(); # get the first Employee
1751 If the object against which the search is performed already has an accessor
1752 matching a column name specified in C<as>, the value can be retrieved using
1753 the accessor as normal:
1755 my $name = $employee->name();
1757 If on the other hand an accessor does not exist in the object, you need to
1758 use C<get_column> instead:
1760 my $employee_count = $employee->get_column('employee_count');
1762 You can create your own accessors if required - see
1763 L<DBIx::Class::Manual::Cookbook> for details.
1765 Please note: This will NOT insert an C<AS employee_count> into the SQL
1766 statement produced, it is used for internal access only. Thus
1767 attempting to use the accessor in an C<order_by> clause or similar
1768 will fail miserably.
1770 To get around this limitation, you can supply literal SQL to your
1771 C<select> attibute that contains the C<AS alias> text, eg:
1773 select => [\'myfield AS alias']
1779 =item Value: ($rel_name | \@rel_names | \%rel_names)
1783 Contains a list of relationships that should be joined for this query. For
1786 # Get CDs by Nine Inch Nails
1787 my $rs = $schema->resultset('CD')->search(
1788 { 'artist.name' => 'Nine Inch Nails' },
1789 { join => 'artist' }
1792 Can also contain a hash reference to refer to the other relation's relations.
1795 package MyApp::Schema::Track;
1796 use base qw/DBIx::Class/;
1797 __PACKAGE__->table('track');
1798 __PACKAGE__->add_columns(qw/trackid cd position title/);
1799 __PACKAGE__->set_primary_key('trackid');
1800 __PACKAGE__->belongs_to(cd => 'MyApp::Schema::CD');
1803 # In your application
1804 my $rs = $schema->resultset('Artist')->search(
1805 { 'track.title' => 'Teardrop' },
1807 join => { cd => 'track' },
1808 order_by => 'artist.name',
1812 If the same join is supplied twice, it will be aliased to <rel>_2 (and
1813 similarly for a third time). For e.g.
1815 my $rs = $schema->resultset('Artist')->search({
1816 'cds.title' => 'Down to Earth',
1817 'cds_2.title' => 'Popular',
1819 join => [ qw/cds cds/ ],
1822 will return a set of all artists that have both a cd with title 'Down
1823 to Earth' and a cd with title 'Popular'.
1825 If you want to fetch related objects from other tables as well, see C<prefetch>
1832 =item Value: ($rel_name | \@rel_names | \%rel_names)
1836 Contains one or more relationships that should be fetched along with the main
1837 query (when they are accessed afterwards they will have already been
1838 "prefetched"). This is useful for when you know you will need the related
1839 objects, because it saves at least one query:
1841 my $rs = $schema->resultset('Tag')->search(
1850 The initial search results in SQL like the following:
1852 SELECT tag.*, cd.*, artist.* FROM tag
1853 JOIN cd ON tag.cd = cd.cdid
1854 JOIN artist ON cd.artist = artist.artistid
1856 L<DBIx::Class> has no need to go back to the database when we access the
1857 C<cd> or C<artist> relationships, which saves us two SQL statements in this
1860 Simple prefetches will be joined automatically, so there is no need
1861 for a C<join> attribute in the above search. If you're prefetching to
1862 depth (e.g. { cd => { artist => 'label' } or similar), you'll need to
1863 specify the join as well.
1865 C<prefetch> can be used with the following relationship types: C<belongs_to>,
1866 C<has_one> (or if you're using C<add_relationship>, any relationship declared
1867 with an accessor type of 'single' or 'filter').
1877 Makes the resultset paged and specifies the page to retrieve. Effectively
1878 identical to creating a non-pages resultset and then calling ->page($page)
1881 If L<rows> attribute is not specified it defualts to 10 rows per page.
1891 Specifes the maximum number of rows for direct retrieval or the number of
1892 rows per page if the page attribute or method is used.
1898 =item Value: $offset
1902 Specifies the (zero-based) row number for the first row to be returned, or the
1903 of the first row of the first page if paging is used.
1909 =item Value: \@columns
1913 A arrayref of columns to group by. Can include columns of joined tables.
1915 group_by => [qw/ column1 column2 ... /]
1921 =item Value: $condition
1925 HAVING is a select statement attribute that is applied between GROUP BY and
1926 ORDER BY. It is applied to the after the grouping calculations have been
1929 having => { 'count(employee)' => { '>=', 100 } }
1935 =item Value: (0 | 1)
1939 Set to 1 to group by all columns.
1945 Adds to the WHERE clause.
1947 # only return rows WHERE deleted IS NULL for all searches
1948 __PACKAGE__->resultset_attributes({ where => { deleted => undef } }); )
1950 Can be overridden by passing C<{ where => undef }> as an attribute
1957 Set to 1 to cache search results. This prevents extra SQL queries if you
1958 revisit rows in your ResultSet:
1960 my $resultset = $schema->resultset('Artist')->search( undef, { cache => 1 } );
1962 while( my $artist = $resultset->next ) {
1966 $rs->first; # without cache, this would issue a query
1968 By default, searches are not cached.
1970 For more examples of using these attributes, see
1971 L<DBIx::Class::Manual::Cookbook>.
1977 =item Value: \@from_clause
1981 The C<from> attribute gives you manual control over the C<FROM> clause of SQL
1982 statements generated by L<DBIx::Class>, allowing you to express custom C<JOIN>
1985 NOTE: Use this on your own risk. This allows you to shoot off your foot!
1987 C<join> will usually do what you need and it is strongly recommended that you
1988 avoid using C<from> unless you cannot achieve the desired result using C<join>.
1989 And we really do mean "cannot", not just tried and failed. Attempting to use
1990 this because you're having problems with C<join> is like trying to use x86
1991 ASM because you've got a syntax error in your C. Trust us on this.
1993 Now, if you're still really, really sure you need to use this (and if you're
1994 not 100% sure, ask the mailing list first), here's an explanation of how this
1997 The syntax is as follows -
2000 { <alias1> => <table1> },
2002 { <alias2> => <table2>, -join_type => 'inner|left|right' },
2003 [], # nested JOIN (optional)
2004 { <table1.column1> => <table2.column2>, ... (more conditions) },
2006 # More of the above [ ] may follow for additional joins
2013 ON <table1.column1> = <table2.column2>
2014 <more joins may follow>
2016 An easy way to follow the examples below is to remember the following:
2018 Anything inside "[]" is a JOIN
2019 Anything inside "{}" is a condition for the enclosing JOIN
2021 The following examples utilize a "person" table in a family tree application.
2022 In order to express parent->child relationships, this table is self-joined:
2024 # Person->belongs_to('father' => 'Person');
2025 # Person->belongs_to('mother' => 'Person');
2027 C<from> can be used to nest joins. Here we return all children with a father,
2028 then search against all mothers of those children:
2030 $rs = $schema->resultset('Person')->search(
2033 alias => 'mother', # alias columns in accordance with "from"
2035 { mother => 'person' },
2038 { child => 'person' },
2040 { father => 'person' },
2041 { 'father.person_id' => 'child.father_id' }
2044 { 'mother.person_id' => 'child.mother_id' }
2051 # SELECT mother.* FROM person mother
2054 # JOIN person father
2055 # ON ( father.person_id = child.father_id )
2057 # ON ( mother.person_id = child.mother_id )
2059 The type of any join can be controlled manually. To search against only people
2060 with a father in the person table, we could explicitly use C<INNER JOIN>:
2062 $rs = $schema->resultset('Person')->search(
2065 alias => 'child', # alias columns in accordance with "from"
2067 { child => 'person' },
2069 { father => 'person', -join_type => 'inner' },
2070 { 'father.id' => 'child.father_id' }
2077 # SELECT child.* FROM person child
2078 # INNER JOIN person father ON child.father_id = father.id