DBIx::Class::ResultSource::Table - Table object


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

Index


Code Index:

NAME

Top

DBIx::Class::ResultSource::Table - Table object

SYNOPSIS

Top

DESCRIPTION

Top

Table object that inherits from DBIx::Class::ResultSource.

METHODS

Top

from

Returns the FROM entry for the table (i.e. the table name)

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::ResultSource::Table;

use strict;
use warnings;

use DBIx::Class::ResultSet;

use base qw/DBIx::Class/;
__PACKAGE__->load_components(qw/ResultSource/);

sub from { shift->name; }

1;