X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FManual%2FCookbook.pod;h=d2656934ca00d433a71eb4df35693a8424b465d2;hb=d76788de371574f1ece78ee652d2d4c4f1a8b8ea;hp=c02e477ae5a77cea9eb5d01892b5068970078560;hpb=20ea616f0157ae01c3af89ce6faa04e1da8248f4;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Manual/Cookbook.pod b/lib/DBIx/Class/Manual/Cookbook.pod index c02e477..d265693 100644 --- a/lib/DBIx/Class/Manual/Cookbook.pod +++ b/lib/DBIx/Class/Manual/Cookbook.pod @@ -19,19 +19,8 @@ paged resultset, which will fetch only a defined number of records at a time: return $rs->all(); # all records for page 1 -The C attribute does not have to be specified in your search: - - my $rs = $schema->resultset('Artist')->search( - undef, - { - rows => 10, - } - ); - - return $rs->page(1); # DBIx::Class::ResultSet containing first 10 records - -In either of the above cases, you can get a L object for the -resultset (suitable for use in e.g. a template) using the C method: +You can get a L object for the resultset (suitable for use +in e.g. a template) using the C method: return $rs->pager(); @@ -116,7 +105,7 @@ reference (this is a feature of L). Say you want to run a complex custom query on your user data, here's what you have to add to your User class: - package My::Schema::User; + package My::Schema::Result::User; use base qw/DBIx::Class/; @@ -160,10 +149,10 @@ files (instead of stuffing all of them into the same resultset class), you can achieve the same with subclassing the resultset class and defining the ResultSource there: - package My::Schema::UserFriendsComplex; + package My::Schema::Result::UserFriendsComplex; - use My::Schema::User; - use base qw/My::Schema::User/; + use My::Schema::Result::User; + use base qw/My::Schema::Result::User/; __PACKAGE__->table('dummy'); # currently must be called before anything else @@ -295,7 +284,7 @@ Please see L documentation if you are in any way unsure about the use of the attributes above (C< join >, C< select >, C< as > and C< group_by >). -=head2 Subqueries +=head2 Subqueries (EXPERIMENTAL) You can write subqueries relatively easily in DBIC. @@ -343,6 +332,10 @@ That creates the following SQL: WHERE artistid = me.artistid ) +=head3 EXPERIMENTAL + +Please note that subqueries are considered an experimental feature. + =head2 Predefined searches You can write your own L class by inheriting from it @@ -504,9 +497,6 @@ L has now prefetched all matching data from the C table, so no additional SQL statements are executed. You now have a much more efficient query. -Note that as of L 0.05999_01, C I be used with -C relationships. - Also note that C should only be used when you know you will definitely use data from a related table. Pre-fetching related tables when you only need columns from the main table will make performance worse! @@ -624,7 +614,7 @@ CD and Concert, and join CD to LinerNotes: =head2 Multi-step prefetch -From 0.04999_05 onwards, C can be nested more than one relationship +C can be nested more than one relationship deep using the same syntax as a multi-step join: my $rs = $schema->resultset('Tag')->search( @@ -664,8 +654,7 @@ method. AKA getting last_insert_id -If you are using PK::Auto (which is a core component as of 0.07), this is -straightforward: +Thanks to the core component PK::Auto, this is straightforward: my $foo = $rs->create(\%blah); # do more stuff @@ -680,7 +669,7 @@ Employ the standard stringification technique by using the C module. To make an object stringify itself as a single column, use something -like this (replace C with the column/method of your choice): +like this (replace C with the column/method of your choice): use overload '""' => sub { shift->name}, fallback => 1; @@ -747,16 +736,16 @@ below: B - package DB::Schema; + package My::Schema; use base qw/DBIx::Class::Schema/; - __PACKAGE__->load_classes(qw/User/); + __PACKAGE__->load_namespaces; B - package DB::Schema::User; + package My::Schema::Result::User; use strict; use warnings; @@ -791,11 +780,11 @@ B } - package DB::Schema::User::Admin; + package My::Schema::Result::User::Admin; use strict; use warnings; - use base qw/DB::Schema::User/; + use base qw/My::Schema::Result::User/; sub hello { @@ -813,7 +802,7 @@ B test.pl use warnings; use strict; - use DB::Schema; + use My::Schema; my $user_data = { email => 'someguy@place.com', password => 'pass1', @@ -823,7 +812,7 @@ B test.pl password => 'pass2', admin => 1 }; - my $schema = DB::Schema->connection('dbi:Pg:dbname=test'); + my $schema = My::Schema->connection('dbi:Pg:dbname=test'); $schema->resultset('User')->create( $user_data ); $schema->resultset('User')->create( $admin_data ); @@ -861,11 +850,16 @@ To do this simply use L. Wasn't that easy? +Beware, changing the Result class using +L will replace any existing class +completely including any special components loaded using +load_components, eg L. + =head2 Get raw data for blindingly fast results If the L solution above is not fast enough for you, you can use a DBIx::Class to return values -exactly as they come out of the data base with none of the convenience methods +exactly as they come out of the database with none of the convenience methods wrapped round them. This is used like so: @@ -876,13 +870,13 @@ This is used like so: } You will need to map the array offsets to particular columns (you can -use the I