minor changes
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / ResultSource / View.pm
CommitLineData
1d521afd 1package DBIx::Class::ResultSource::View;
2
3use strict;
4use warnings;
5
6use DBIx::Class::ResultSet;
7
8use base qw/DBIx::Class/;
9__PACKAGE__->load_components(qw/ResultSource/);
030c27ad 10__PACKAGE__->mk_group_accessors(
11 'simple' => qw(is_virtual view_definition)
12);
1d521afd 13
1d521afd 14=head1 NAME
15
00be2e0b 16DBIx::Class::ResultSource::View - ResultSource object representing a view
1d521afd 17
18=head1 SYNOPSIS
19
16ccb4fe 20 package MyDB::Schema::Result::Year2000CDs;
00be2e0b 21
b4664250 22 use base qw/DBIx::Class/;
00be2e0b 23
24 __PACKAGE__->load_components('Core');
25 __PACKAGE__->table_class('DBIx::Class::ResultSource::View');
26
27 __PACKAGE__->table('year2000cds');
28 __PACKAGE__->result_source_instance->is_virtual(1);
29 __PACKAGE__->result_source_instance->view_definition(
30 "SELECT cdid, artist, title FROM cd WHERE year ='2000'"
b4664250 31 );
32 __PACKAGE__->add_columns(
33 'cdid' => {
34 data_type => 'integer',
35 is_auto_increment => 1,
36 },
37 'artist' => {
38 data_type => 'integer',
39 },
40 'title' => {
41 data_type => 'varchar',
42 size => 100,
43 },
44 );
00be2e0b 45
1d521afd 46=head1 DESCRIPTION
47
00be2e0b 48View object that inherits from L<DBIx::Class::ResultSource>
49
b4664250 50This class extends ResultSource to add basic view support.
00be2e0b 51
b4664250 52A view has a L</view_definition>, which contains a SQL query. The query can
53only have parameters if L</is_virtual> is set to true. It may contain JOINs,
54sub selects and any other SQL your database supports.
00be2e0b 55
56View definition SQL is deployed to your database on
57L<DBIx::Class::Schema/deploy> unless you set L</is_virtual> to true.
58
59Deploying the view does B<not> translate it between different database
60syntaxes, so be careful what you write in your view SQL.
61
66d2a14e 62Virtual views (L</is_virtual> true), are assumed to not
00be2e0b 63exist in your database as a real view. The L</view_definition> in this
64case replaces the view name in a FROM clause in a subselect.
65
b4664250 66=head1 EXAMPLES
67
68Having created the MyDB::Schema::Year2000CDs schema as shown in the SYNOPSIS
69above, you can then:
70
71 $2000_cds = $schema->resultset('Year2000CDs')
72 ->search()
73 ->all();
74 $count = $schema->resultset('Year2000CDs')
75 ->search()
76 ->count();
77
78If you modified the schema to include a placeholder
79
80 __PACKAGE__->result_source_instance->view_definition(
81 "SELECT cdid, artist, title FROM cd WHERE year ='?'"
82 );
83
84and ensuring you have is_virtual set to true:
85
86 __PACKAGE__->result_source_instance->is_virtual(1);
87
88You could now say:
89
90 $2001_cds = $schema->resultset('Year2000CDs')
91 ->search({}, { bind => [2001] })
92 ->all();
93 $count = $schema->resultset('Year2000CDs')
94 ->search({}, { bind => [2001] })
95 ->count();
96
00be2e0b 97=head1 SQL EXAMPLES
98
99=over
100
66d2a14e 101=item is_virtual set to false
00be2e0b 102
103 $schema->resultset('Year2000CDs')->all();
104
105 SELECT cdid, artist, title FROM year2000cds me
106
66d2a14e 107=item is_virtual set to true
00be2e0b 108
109 $schema->resultset('Year2000CDs')->all();
110
111 SELECT cdid, artist, title FROM
112 (SELECT cdid, artist, title FROM cd WHERE year ='2000') me
113
114=back
1d521afd 115
116=head1 METHODS
117
9774f48b 118=head2 is_virtual
119
00be2e0b 120 __PACKAGE__->result_source_instance->is_virtual(1);
121
122Set to true for a virtual view, false or unset for a real
123database-based view.
124
125=head2 view_definition
126
127 __PACKAGE__->result_source_instance->view_definition(
128 "SELECT cdid, artist, title FROM cd WHERE year ='2000'"
129 );
130
131An SQL query for your view. Will not be translated across database
132syntaxes.
133
134
135=head1 OVERRIDDEN METHODS
9774f48b 136
1d521afd 137=head2 from
138
139Returns the FROM entry for the table (i.e. the view name)
00be2e0b 140or the SQL as a subselect if this is a virtual view.
1d521afd 141
142=cut
143
9774f48b 144sub from {
145 my $self = shift;
146 return \"(${\$self->view_definition})" if $self->is_virtual;
147 return $self->name;
148}
1d521afd 149
1501;
151
152=head1 AUTHORS
153
154Matt S. Trout <mst@shadowcatsystems.co.uk>
155
156With Contributions from:
157
158Guillermo Roditi E<lt>groditi@cpan.orgE<gt>
159
00be2e0b 160Jess Robinson <castaway@desert-island.me.uk>
161
66d2a14e 162Wallace Reis <wreis@cpan.org>
163
1d521afd 164=head1 LICENSE
165
166You may distribute this code under the same terms as Perl itself.
167
168=cut
169