-
-
19 May 2006 15:38:54 UTC
- Distribution: DBIx-Class
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (120)
- Testers (10 / 330 / 0)
- Kwalitee
Bus factor: 1- License: perl_5
- Activity
24 month- Tools
- Download (133.34KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 1 contributors- HASH(0xaca93e8)
- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
DBIx::Class::ResultSetManager - helpful methods for managing resultset classes (EXPERIMENTAL)
SYNOPSIS
# in a table class __PACKAGE__->load_components(qw/ResultSetManager Core/); # note order! __PACKAGE__->load_resultset_components(qw/AlwaysRS/); # will be removed from the table class and inserted into a # table-specific resultset class sub search_by_year_desc : ResultSet { my $self = shift; my $cond = shift; my $attrs = shift || {}; $attrs->{order_by} = 'year DESC'; $self->search($cond, $attrs); } $rs = $schema->resultset('CD')->search_by_year_desc({ artist => 'Tool' });
DESCRIPTION
This package implements two useful features for customizing resultset classes.
load_resultset_components
loads components in addition toDBIx::Class::ResultSet
(or whatever you set asbase_resultset_class
). Any methods tagged with theResultSet
attribute will be moved into a table-specific resultset class (by default calledClass::_resultset
, but configurable viatable_resultset_class_suffix
). Most of the magic is done when you call__PACKAGE__->table
.AUTHORS
David Kamholz <dkamholz@cpan.org>
LICENSE
You may distribute this code under the same terms as Perl itself.
Module Install Instructions
To install DBIx::Class, copy and paste the appropriate command in to your terminal.
cpanm DBIx::Class
perl -MCPAN -e shell install DBIx::Class
For more information on module installation, please visit the detailed CPAN module installation guide.