DBIx::Class::Core - Core set of DBIx::Class modules


DBIx-Class documentation Contained in the DBIx-Class distribution.

Index


Code Index:

NAME

Top

DBIx::Class::Core - Core set of DBIx::Class modules

SYNOPSIS

Top

  # In your table classes
  __PACKAGE__->load_components(qw/Core/);

DESCRIPTION

Top

This class just inherits from the various modules that make up the DBIx::Class core features. You almost certainly want these.

The core modules currently are:

DBIx::Class::InflateColumn
DBIx::Class::Relationship
DBIx::Class::PK::Auto
DBIx::Class::PK
DBIx::Class::Row
DBIx::Class::ResultSourceProxy::Table

AUTHORS

Top

Matt S. Trout <mst@shadowcatsystems.co.uk>

LICENSE

Top

You may distribute this code under the same terms as Perl itself.


DBIx-Class documentation Contained in the DBIx-Class distribution.

package DBIx::Class::Core;

use strict;
use warnings;
no warnings 'qw';

use base qw/DBIx::Class/;

__PACKAGE__->load_components(qw/
  Relationship
  InflateColumn
  PK::Auto
  PK
  Row
  ResultSourceProxy::Table/);

1;