| DBIx-Class documentation | Contained in the DBIx-Class distribution. |
DBIx::Class::ResultSource::Table - Table object
Table object that inherits from DBIx::Class::ResultSource.
Returns the FROM entry for the table (i.e. the table name)
Matt S. Trout <mst@shadowcatsystems.co.uk>
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;