1 package DBIx::Class::ResultSource::Table;
6 use DBIx::Class::ResultSet;
8 use base qw/DBIx::Class/;
9 __PACKAGE__->load_components(qw/ResultSource/);
13 DBIx::Class::ResultSource::Table - Table object
19 Table object that inherits from L<DBIx::Class::ResultSource>
25 Returns the FROM entry for the table (i.e. the table name)
29 sub from { shift->name; }
35 Matt S. Trout <mst@shadowcatsystems.co.uk>
39 You may distribute this code under the same terms as Perl itself.