[Bast-commits] r5532 - in DBIx-Class/0.08/branches/views/lib/DBIx/Class: . ResultSource

castaway at dev.catalyst.perl.org castaway at dev.catalyst.perl.org
Thu Feb 19 22:35:07 GMT 2009


Author: castaway
Date: 2009-02-19 22:35:05 +0000 (Thu, 19 Feb 2009)
New Revision: 5532

Modified:
   DBIx-Class/0.08/branches/views/lib/DBIx/Class/ResultSource.pm
   DBIx-Class/0.08/branches/views/lib/DBIx/Class/ResultSource/View.pm
Log:
POD fixing to explain views, and mention in main ResultSource.


Modified: DBIx-Class/0.08/branches/views/lib/DBIx/Class/ResultSource/View.pm
===================================================================
--- DBIx-Class/0.08/branches/views/lib/DBIx/Class/ResultSource/View.pm	2009-02-19 22:12:20 UTC (rev 5531)
+++ DBIx-Class/0.08/branches/views/lib/DBIx/Class/ResultSource/View.pm	2009-02-19 22:35:05 UTC (rev 5532)
@@ -13,24 +13,87 @@
 
 =head1 NAME
 
-DBIx::Class::ResultSource::Table - Table object
+DBIx::Class::ResultSource::View - ResultSource object representing a view
 
 =head1 SYNOPSIS
 
+  package MyDB::Schema::Year2000CDs;
+
+  use DBIx::Class::ResultSource::View;
+
+  __PACKAGE__->load_components('Core');
+  __PACKAGE__->table_class('DBIx::Class::ResultSource::View');
+
+  __PACKAGE__->table('year2000cds');
+  __PACKAGE__->result_source_instance->is_virtual(1);
+  __PACKAGE__->result_source_instance->view_definition(
+      "SELECT cdid, artist, title FROM cd WHERE year ='2000'"
+      );
+
 =head1 DESCRIPTION
 
-Table object that inherits from L<DBIx::Class::ResultSource>
+View object that inherits from L<DBIx::Class::ResultSource>
 
+This class extends ResultSource to add basic view support. 
+
+A view has a L</view_definition>, which contains an SQL query. The
+query cannot have parameters. It may contain JOINs, sub selects and
+any other SQL your database supports.
+
+View definition SQL is deployed to your database on
+L<DBIx::Class::Schema/deploy> unless you set L</is_virtual> to true.
+
+Deploying the view does B<not> translate it between different database
+syntaxes, so be careful what you write in your view SQL.
+
+Virtual views (L</is_virtual> unset or false), are assumed to not
+exist in your database as a real view. The L</view_definition> in this
+case replaces the view name in a FROM clause in a subselect.
+
+=head1 SQL EXAMPLES
+
+=over
+
+=item is_virtual set to true
+
+  $schema->resultset('Year2000CDs')->all();
+
+  SELECT cdid, artist, title FROM year2000cds me
+
+=item is_virtual set to false
+
+  $schema->resultset('Year2000CDs')->all();
+
+  SELECT cdid, artist, title FROM 
+    (SELECT cdid, artist, title FROM cd WHERE year ='2000') me
+
+=back
+
 =head1 METHODS
 
 =head2 is_virtual
 
-Attribute to declare a view as virtual.
+  __PACKAGE__->result_source_instance->is_virtual(1);
 
+Set to true for a virtual view, false or unset for a real
+database-based view.
+
+=head2 view_definition
+
+  __PACKAGE__->result_source_instance->view_definition(
+      "SELECT cdid, artist, title FROM cd WHERE year ='2000'"
+      );
+
+An SQL query for your view. Will not be translated across database
+syntaxes.
+
+
+=head1 OVERRIDDEN METHODS
+
 =head2 from
 
 Returns the FROM entry for the table (i.e. the view name)
-or the definition if this is a virtual view.
+or the SQL as a subselect if this is a virtual view.
 
 =cut
 
@@ -50,6 +113,8 @@
 
 Guillermo Roditi E<lt>groditi at cpan.orgE<gt>
 
+Jess Robinson <castaway at desert-island.me.uk>
+
 =head1 LICENSE
 
 You may distribute this code under the same terms as Perl itself.

Modified: DBIx-Class/0.08/branches/views/lib/DBIx/Class/ResultSource.pm
===================================================================
--- DBIx-Class/0.08/branches/views/lib/DBIx/Class/ResultSource.pm	2009-02-19 22:12:20 UTC (rev 5531)
+++ DBIx-Class/0.08/branches/views/lib/DBIx/Class/ResultSource.pm	2009-02-19 22:35:05 UTC (rev 5532)
@@ -29,6 +29,8 @@
 A ResultSource is a component of a schema from which results can be directly
 retrieved, most usually a table (see L<DBIx::Class::ResultSource::Table>)
 
+Basic view support also exists, see L<<DBIx::Class::ResultSource::View>.
+
 =head1 METHODS
 
 =pod




More information about the Bast-commits mailing list