1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
package DBIx::Class::Helper::ResultSet;
{
$DBIx::Class::Helper::ResultSet::VERSION = '2.013002';
}
use parent qw{
DBIx::Class::Helper::ResultSet::IgnoreWantarray
DBIx::Class::Helper::ResultSet::Random
DBIx::Class::Helper::ResultSet::Union
DBIx::Class::Helper::ResultSet::VirtualView
};
# ABSTRACT: All the ResultSet Helpers in one place
1;
__END__
=pod
=head1 NAME
DBIx::Class::Helper::ResultSet - All the ResultSet Helpers in one place
=head1 VERSION
version 2.013002
=head1 DESCRIPTION
This is just a simple Helper helper that includes all of the ResultSet Helpers
in one convenient module.
=head2 NOTE
You probably want this applied to your entire schema. The most convenient
way to do that is to make a base ResultSet and inherit from that in all of
your custom ResultSets as well has make it the default ResultSet for the
non-custom ResultSets. Example:
package My::App::Schema::ResultSet;
use strict;
use warnings;
use base 'DBIx::Class::ResultSet';
__PACKAGE__->load_components('Helper::ResultSet');
1;
package My::App::Schema;
use base 'DBIx::Class::Schema';
My::App::Schema->load_namespaces(
default_resultset_class => 'ResultSet',
);
1;
=head1 AUTHOR
Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Arthur Axel "fREW" Schmidt.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|