Commit | Line | Data |
---|---|---|
151fc9ad | 1 | package DBIx::Class::ResultSource::Table; |
ea2e61bf | 2 | |
3 | use strict; | |
4 | use warnings; | |
5 | ||
223b8fe3 | 6 | use DBIx::Class::ResultSet; |
95a70f01 | 7 | |
1edd1722 | 8 | use base qw/DBIx::Class/; |
1e10a11d | 9 | __PACKAGE__->load_components(qw/ResultSource/); |
525035fb | 10 | |
75d07914 | 11 | =head1 NAME |
34d52be2 | 12 | |
1ea77c14 | 13 | DBIx::Class::ResultSource::Table - Table object |
34d52be2 | 14 | |
15 | =head1 SYNOPSIS | |
16 | ||
17 | =head1 DESCRIPTION | |
18 | ||
48580715 | 19 | Table object that inherits from L<DBIx::Class::ResultSource>. |
34d52be2 | 20 | |
21 | =head1 METHODS | |
22 | ||
fea3d045 | 23 | =head2 from |
24 | ||
25 | Returns the FROM entry for the table (i.e. the table name) | |
26 | ||
27 | =cut | |
28 | ||
bfb2bd4f | 29 | sub from { shift->name; } |
fea3d045 | 30 | |
a2bd3796 | 31 | =head1 FURTHER QUESTIONS? |
34d52be2 | 32 | |
a2bd3796 | 33 | Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>. |
34d52be2 | 34 | |
a2bd3796 | 35 | =head1 COPYRIGHT AND LICENSE |
34d52be2 | 36 | |
a2bd3796 | 37 | This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE> |
38 | by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can | |
39 | redistribute it and/or modify it under the same terms as the | |
40 | L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>. | |
34d52be2 | 41 | |
42 | =cut | |
43 | ||
a2bd3796 | 44 | 1; |