line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package DBIx::Class::ResultSource::Table; |
2
|
|
|
|
|
|
|
|
3
|
379
|
|
|
379
|
|
2147
|
use strict; |
|
379
|
|
|
|
|
742
|
|
|
379
|
|
|
|
|
10253
|
|
4
|
379
|
|
|
379
|
|
1528
|
use warnings; |
|
379
|
|
|
|
|
648
|
|
|
379
|
|
|
|
|
9318
|
|
5
|
|
|
|
|
|
|
|
6
|
379
|
|
|
379
|
|
286302
|
use DBIx::Class::ResultSet; |
|
379
|
|
|
|
|
1080
|
|
|
379
|
|
|
|
|
13492
|
|
7
|
|
|
|
|
|
|
|
8
|
379
|
|
|
379
|
|
3138
|
use base qw/DBIx::Class/; |
|
379
|
|
|
|
|
858
|
|
|
379
|
|
|
|
|
49616
|
|
9
|
|
|
|
|
|
|
__PACKAGE__->load_components(qw/ResultSource/); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
DBIx::Class::ResultSource::Table - Table object |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 SYNOPSIS |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 DESCRIPTION |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Table object that inherits from L. |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 METHODS |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head2 from |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
Returns the FROM entry for the table (i.e. the table name) |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=cut |
28
|
|
|
|
|
|
|
|
29
|
19370
|
|
|
19370
|
1
|
97211
|
sub from { shift->name; } |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 FURTHER QUESTIONS? |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
Check the list of L. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
This module is free software L |
38
|
|
|
|
|
|
|
by the L. You can |
39
|
|
|
|
|
|
|
redistribute it and/or modify it under the same terms as the |
40
|
|
|
|
|
|
|
L. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=cut |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
1; |