3 DBIx::Class::Manual::Cookbook - Miscellaneous recipes
11 When you expect a large number of results, you can ask L<DBIx::Class> for a
12 paged resultset, which will fetch only a small number of records at a time:
14 my $rs = $schema->resultset('Artist')->search(
17 page => 1, # page to return (defaults to 1)
18 rows => 10, # number of results per page
22 return $rs->all(); # all records for page 1
24 The C<page> attribute does not have to be specified in your search:
26 my $rs = $schema->resultset('Artist')->search(
33 return $rs->page(1); # DBIx::Class::ResultSet containing first 10 records
35 In either of the above cases, you can return a L<Data::Page> object for the
36 resultset (suitable for use in e.g. a template) using the C<pager> method:
40 =head3 Complex WHERE clauses
42 Sometimes you need to formulate a query using specific operators:
44 my @albums = $schema->resultset('Album')->search({
45 artist => { 'like', '%Lamb%' },
46 title => { 'like', '%Fear of Fours%' },
49 This results in something like the following C<WHERE> clause:
51 WHERE artist LIKE '%Lamb%' AND title LIKE '%Fear of Fours%'
53 Other queries might require slightly more complex logic:
55 my @albums = $schema->resultset('Album')->search({
58 artist => { 'like', '%Smashing Pumpkins%' },
59 title => 'Siamese Dream',
61 artist => 'Starchildren',
65 This results in the following C<WHERE> clause:
67 WHERE ( artist LIKE '%Smashing Pumpkins%' AND title = 'Siamese Dream' )
68 OR artist = 'Starchildren'
70 For more information on generating complex queries, see
71 L<SQL::Abstract/WHERE CLAUSES>.
73 =head3 Arbitrary SQL through a custom ResultSource
75 Sometimes you have to run arbitrary SQL because your query is too complex
76 (e.g. it contains Unions, Sub-Selects, Stored Procedures, etc.) or has to
77 be optimized for your database in a special way, but you still want to
78 get the results as a L<DBIx::Class::ResultSet>.
79 The recommended way to accomplish this is by defining a separate ResultSource
80 for your query. You can then inject complete SQL statements using a scalar
81 reference (this is a feature of L<SQL::Abstract>).
83 Say you want to run a complex custom query on your user data, here's what
84 you have to add to your User class:
86 package My::Schema::User;
88 use base qw/DBIx::Class/;
90 # ->load_components, ->table, ->add_columns, etc.
92 # Make a new ResultSource based on the User class
93 my $source = __PACKAGE__->result_source_instance();
94 my $new_source = $source->new( $source );
95 $new_source->source_name( 'UserFriendsComplex' );
97 # Hand in your query as a scalar reference
98 # It will be added as a sub-select after FROM,
99 # so pay attention to the surrounding brackets!
100 $new_source->name( \<<SQL );
101 ( SELECT u.* FROM user u
102 INNER JOIN user_friends f ON u.id = f.user_id
103 WHERE f.friend_user_id = ?
105 SELECT u.* FROM user u
106 INNER JOIN user_friends f ON u.id = f.friend_user_id
107 WHERE f.user_id = ? )
110 # Finally, register your new ResultSource with your Schema
111 My::Schema->register_source( 'UserFriendsComplex' => $new_source );
113 Next, you can execute your complex query using bind parameters like this:
115 my $friends = [ $schema->resultset( 'UserFriendsComplex' )->search( {},
117 bind => [ 12345, 12345 ]
121 ... and you'll get back a perfect L<DBIx::Class::ResultSet>.
123 =head3 Using specific columns
125 When you only want specific columns from a table, you can use
126 C<columns> to specify which ones you need. This is useful to avoid
127 loading columns with large amounts of data that you aren't about to
130 my $rs = $schema->resultset('Artist')->search(
133 columns => [qw/ name /]
138 # SELECT artist.name FROM artist
140 This is a shortcut for C<select> and C<as>, see below. C<columns>
141 cannot be used together with C<select> and C<as>.
143 =head3 Using database functions or stored procedures
145 The combination of C<select> and C<as> can be used to return the result of a
146 database function or stored procedure as a column value. You use C<select> to
147 specify the source for your column value (e.g. a column name, function, or
148 stored procedure name). You then use C<as> to set the column name you will use
149 to access the returned value:
151 my $rs = $schema->resultset('Artist')->search(
154 select => [ 'name', { LENGTH => 'name' } ],
155 as => [qw/ name name_length /],
160 # SELECT name name, LENGTH( name )
163 Note that the C< as > attribute has absolutely nothing to with the sql
164 syntax C< SELECT foo AS bar > (see the documentation in
165 L<DBIx::Class::ResultSet/ATTRIBUTES>). If your alias exists as a
166 column in your base class (i.e. it was added with C<add_columns>), you
167 just access it as normal. Our C<Artist> class has a C<name> column, so
168 we just use the C<name> accessor:
170 my $artist = $rs->first();
171 my $name = $artist->name();
173 If on the other hand the alias does not correspond to an existing column, you
174 have to fetch the value using the C<get_column> accessor:
176 my $name_length = $artist->get_column('name_length');
178 If you don't like using C<get_column>, you can always create an accessor for
179 any of your aliases using either of these:
181 # Define accessor manually:
182 sub name_length { shift->get_column('name_length'); }
184 # Or use DBIx::Class::AccessorGroup:
185 __PACKAGE__->mk_group_accessors('column' => 'name_length');
187 =head3 SELECT DISTINCT with multiple columns
189 my $rs = $schema->resultset('Foo')->search(
193 { distinct => [ $source->columns ] }
195 as => [ $source->columns ] # remember 'as' is not the same as SQL AS :-)
199 my $count = $rs->next->get_column('count');
201 =head3 SELECT COUNT(DISTINCT colname)
203 my $rs = $schema->resultset('Foo')->search(
207 { count => { distinct => 'colname' } }
213 =head3 Grouping results
215 L<DBIx::Class> supports C<GROUP BY> as follows:
217 my $rs = $schema->resultset('Artist')->search(
221 select => [ 'name', { count => 'cds.cdid' } ],
222 as => [qw/ name cd_count /],
223 group_by => [qw/ name /]
228 # SELECT name, COUNT( cds.cdid ) FROM artist me
229 # LEFT JOIN cd cds ON ( cds.artist = me.artistid )
232 Please see L<DBIx::Class::ResultSet/ATTRIBUTES> documentation if you
233 are in any way unsure about the use of the attributes above (C< join
234 >, C< select >, C< as > and C< group_by >).
236 =head3 Predefined searches
238 You can write your own L<DBIx::Class::ResultSet> class by inheriting from it
239 and define often used searches as methods:
241 package My::DBIC::ResultSet::CD;
244 use base 'DBIx::Class::ResultSet';
246 sub search_cds_ordered {
249 return $self->search(
251 { order_by => 'name DESC' },
257 To use your resultset, first tell DBIx::Class to create an instance of it
258 for you, in your My::DBIC::Schema::CD class:
260 __PACKAGE__->resultset_class('My::DBIC::ResultSet::CD');
262 Then call your new method in your code:
264 my $ordered_cds = $schema->resultset('CD')->search_cds_ordered();
267 =head3 Predefined searches without writing a ResultSet class
269 Alternatively you can automatically generate a DBIx::Class::ResultSet
270 class by using the ResultSetManager component and tagging your method
273 __PACKAGE__->load_components(qw/ ResultSetManager Core /);
275 sub search_cds_ordered : ResultSet {
277 return $self->search(
279 { order_by => 'name DESC' },
283 Then call your method in the same way from your code:
285 my $ordered_cds = $schema->resultset('CD')->search_cds_ordered();
287 =head2 Using joins and prefetch
289 You can use the C<join> attribute to allow searching on, or sorting your
290 results by, one or more columns in a related table. To return all CDs matching
291 a particular artist name:
293 my $rs = $schema->resultset('CD')->search(
295 'artist.name' => 'Bob Marley'
298 join => [qw/artist/], # join the artist table
303 # SELECT cd.* FROM cd
304 # JOIN artist ON cd.artist = artist.id
305 # WHERE artist.name = 'Bob Marley'
307 If required, you can now sort on any column in the related tables by including
308 it in your C<order_by> attribute:
310 my $rs = $schema->resultset('CD')->search(
312 'artist.name' => 'Bob Marley'
315 join => [qw/ artist /],
316 order_by => [qw/ artist.name /]
321 # SELECT cd.* FROM cd
322 # JOIN artist ON cd.artist = artist.id
323 # WHERE artist.name = 'Bob Marley'
324 # ORDER BY artist.name
326 Note that the C<join> attribute should only be used when you need to search or
327 sort using columns in a related table. Joining related tables when you only
328 need columns from the main table will make performance worse!
330 Now let's say you want to display a list of CDs, each with the name of the
331 artist. The following will work fine:
333 while (my $cd = $rs->next) {
334 print "CD: " . $cd->title . ", Artist: " . $cd->artist->name;
337 There is a problem however. We have searched both the C<cd> and C<artist> tables
338 in our main query, but we have only returned data from the C<cd> table. To get
339 the artist name for any of the CD objects returned, L<DBIx::Class> will go back
342 SELECT artist.* FROM artist WHERE artist.id = ?
344 A statement like the one above will run for each and every CD returned by our
345 main query. Five CDs, five extra queries. A hundred CDs, one hundred extra
348 Thankfully, L<DBIx::Class> has a C<prefetch> attribute to solve this problem.
349 This allows you to fetch results from related tables in advance:
351 my $rs = $schema->resultset('CD')->search(
353 'artist.name' => 'Bob Marley'
356 join => [qw/ artist /],
357 order_by => [qw/ artist.name /],
358 prefetch => [qw/ artist /] # return artist data too!
362 # Equivalent SQL (note SELECT from both "cd" and "artist"):
363 # SELECT cd.*, artist.* FROM cd
364 # JOIN artist ON cd.artist = artist.id
365 # WHERE artist.name = 'Bob Marley'
366 # ORDER BY artist.name
368 The code to print the CD list remains the same:
370 while (my $cd = $rs->next) {
371 print "CD: " . $cd->title . ", Artist: " . $cd->artist->name;
374 L<DBIx::Class> has now prefetched all matching data from the C<artist> table,
375 so no additional SQL statements are executed. You now have a much more
378 Note that as of L<DBIx::Class> 0.05999_01, C<prefetch> I<can> be used with
379 C<has_many> relationships.
381 Also note that C<prefetch> should only be used when you know you will
382 definitely use data from a related table. Pre-fetching related tables when you
383 only need columns from the main table will make performance worse!
385 =head3 Multi-step joins
387 Sometimes you want to join more than one relationship deep. In this example,
388 we want to find all C<Artist> objects who have C<CD>s whose C<LinerNotes>
389 contain a specific string:
391 # Relationships defined elsewhere:
392 # Artist->has_many('cds' => 'CD', 'artist');
393 # CD->has_one('liner_notes' => 'LinerNotes', 'cd');
395 my $rs = $schema->resultset('Artist')->search(
397 'liner_notes.notes' => { 'like', '%some text%' },
401 'cds' => 'liner_notes'
407 # SELECT artist.* FROM artist
408 # JOIN ( cd ON artist.id = cd.artist )
409 # JOIN ( liner_notes ON cd.id = liner_notes.cd )
410 # WHERE liner_notes.notes LIKE '%some text%'
412 Joins can be nested to an arbitrary level. So if we decide later that we
413 want to reduce the number of Artists returned based on who wrote the liner
416 # Relationship defined elsewhere:
417 # LinerNotes->belongs_to('author' => 'Person');
419 my $rs = $schema->resultset('Artist')->search(
421 'liner_notes.notes' => { 'like', '%some text%' },
422 'author.name' => 'A. Writer'
427 'liner_notes' => 'author'
434 # SELECT artist.* FROM artist
435 # JOIN ( cd ON artist.id = cd.artist )
436 # JOIN ( liner_notes ON cd.id = liner_notes.cd )
437 # JOIN ( author ON author.id = liner_notes.author )
438 # WHERE liner_notes.notes LIKE '%some text%'
439 # AND author.name = 'A. Writer'
441 =head2 Multi-step prefetch
443 From 0.04999_05 onwards, C<prefetch> can be nested more than one relationship
444 deep using the same syntax as a multi-step join:
446 my $rs = $schema->resultset('Tag')->search(
456 # SELECT tag.*, cd.*, artist.* FROM tag
457 # JOIN cd ON tag.cd = cd.cdid
458 # JOIN artist ON cd.artist = artist.artistid
460 Now accessing our C<cd> and C<artist> relationships does not need additional
463 my $tag = $rs->first;
464 print $tag->cd->artist->name;
466 =head2 Columns of data
468 If you want to find the sum of a particular column there are several
469 ways, the obvious one is to use search:
471 my $rs = $schema->resultset('Items')->search(
474 select => [ { sum => 'Cost' } ],
475 as => [ 'total_cost' ], # remember this 'as' is for DBIx::Class::ResultSet not SQL
478 my $tc = $rs->first->get_column('total_cost');
480 Or, you can use the L<DBIx::Class::ResultSetColumn>, which gets
481 returned when you ask the C<ResultSet> for a column using
484 my $cost = $schema->resultset('Items')->get_column('Cost');
487 With this you can also do:
489 my $minvalue = $cost->min;
490 my $maxvalue = $cost->max;
492 Or just iterate through the values of this column only:
494 while ( my $c = $cost->next ) {
498 foreach my $c ($cost->all) {
502 C<ResultSetColumn> only has a limited number of built-in functions, if
503 you need one that it doesn't have, then you can use the C<func> method
506 my $avg = $cost->func('AVERAGE');
508 This will cause the following SQL statement to be run:
510 SELECT AVERAGE(Cost) FROM Items me
512 Which will of course only work if your database supports this function.
513 See L<DBIx::Class::ResultSetColumn> for more documentation.
515 =head2 Using relationships
517 =head3 Create a new row in a related table
519 my $book->create_related('author', { name => 'Fred'});
521 =head3 Search in a related table
523 Only searches for books named 'Titanic' by the author in $author.
525 my $author->search_related('books', { name => 'Titanic' });
527 =head3 Delete data in a related table
529 Deletes only the book named Titanic by the author in $author.
531 my $author->delete_related('books', { name => 'Titanic' });
533 =head3 Ordering a relationship result set
535 If you always want a relation to be ordered, you can specify this when you
536 create the relationship.
538 To order C<< $book->pages >> by descending page_number.
540 Book->has_many('pages' => 'Page', 'book', { order_by => \'page_number DESC'} );
546 As of version 0.04001, there is improved transaction support in
547 L<DBIx::Class::Storage> and L<DBIx::Class::Schema>. Here is an
548 example of the recommended way to use it:
550 my $genus = $schema->resultset('Genus')->find(12);
558 $genus->add_to_species({ name => 'troglodyte' });
561 $schema->txn_do($coderef2); # Can have a nested transaction
562 return $genus->species;
567 $rs = $schema->txn_do($coderef1);
570 if ($@) { # Transaction failed
571 die "the sky is falling!" #
572 if ($@ =~ /Rollback failed/); # Rollback failed
574 deal_with_failed_transaction();
577 Nested transactions will work as expected. That is, only the outermost
578 transaction will actually issue a commit to the $dbh, and a rollback
579 at any level of any transaction will cause the entire nested
580 transaction to fail. Support for savepoints and for true nested
581 transactions (for databases that support them) will hopefully be added
584 =head2 Many-to-many relationships
586 This is straightforward using L<ManyToMany|DBIx::Class::Relationship/many_to_many>:
589 # ... set up connection ...
593 __PACKAGE__->table('user');
594 __PACKAGE__->add_columns(qw/id name/);
595 __PACKAGE__->set_primary_key('id');
596 __PACKAGE__->has_many('user_address' => 'My::UserAddress', 'user');
597 __PACKAGE__->many_to_many('addresses' => 'user_address', 'address');
599 package My::UserAddress;
601 __PACKAGE__->table('user_address');
602 __PACKAGE__->add_columns(qw/user address/);
603 __PACKAGE__->set_primary_key(qw/user address/);
604 __PACKAGE__->belongs_to('user' => 'My::User');
605 __PACKAGE__->belongs_to('address' => 'My::Address');
609 __PACKAGE__->table('address');
610 __PACKAGE__->add_columns(qw/id street town area_code country/);
611 __PACKAGE__->set_primary_key('id');
612 __PACKAGE__->has_many('user_address' => 'My::UserAddress', 'address');
613 __PACKAGE__->many_to_many('users' => 'user_address', 'user');
615 $rs = $user->addresses(); # get all addresses for a user
616 $rs = $address->users(); # get all users for an address
618 =head2 Setting default values for a row
620 It's as simple as overriding the C<new> method. Note the use of
624 my ( $class, $attrs ) = @_;
626 $attrs->{foo} = 'bar' unless defined $attrs->{foo};
628 my $new = $class->next::method($attrs);
633 For more information about C<next::method>, look in the L<Class::C3>
634 documentation. See also L<DBIx::Class::Manual::Component> for more
635 ways to write your own base classes to do this.
637 People looking for ways to do "triggers" with DBIx::Class are probably
638 just looking for this.
640 =head2 Stringification
642 Employ the standard stringification technique by using the C<overload>
645 To make an object stringify itself as a single column, use something
646 like this (replace C<foo> with the column/method of your choice):
648 use overload '""' => sub { shift->name}, fallback => 1;
650 For more complex stringification, you can use an anonymous subroutine:
652 use overload '""' => sub { $_[0]->name . ", " .
653 $_[0]->address }, fallback => 1;
655 =head3 Stringification Example
657 Suppose we have two tables: C<Product> and C<Category>. The table
660 Product(id, Description, category)
661 Category(id, Description)
663 C<category> is a foreign key into the Category table.
665 If you have a Product object C<$obj> and write something like
669 things will not work as expected.
671 To obtain, for example, the category description, you should add this
672 method to the class defining the Category table:
674 use overload "" => sub {
677 return $self->Description;
680 =head2 Disconnecting cleanly
682 If you find yourself quitting an app with Control-C a lot during
683 development, you might like to put the following signal handler in
684 your main database class to make sure it disconnects cleanly:
687 __PACKAGE__->storage->disconnect;
690 =head2 Schema import/export
692 This functionality requires you to have L<SQL::Translator> (also known as
693 "SQL Fairy") installed.
695 To create a DBIx::Class schema from an existing database:
698 --to DBIx::Class::File
699 --prefix "MySchema" > MySchema.pm
701 To create a MySQL database from an existing L<DBIx::Class> schema, convert the
702 schema to MySQL's dialect of SQL:
704 sqlt --from SQL::Translator::Parser::DBIx::Class
706 --DBIx::Class "MySchema.pm" > Schema1.sql
708 And import using the mysql client:
710 mysql -h "host" -D "database" -u "user" -p < Schema1.sql
712 =head2 Easy migration from class-based to schema-based setup
714 You want to start using the schema-based approach to L<DBIx::Class>
715 (see L<SchemaIntro.pod>), but have an established class-based setup with lots
716 of existing classes that you don't want to move by hand. Try this nifty script
722 my $schema = MyDB->schema_instance;
724 my $translator = SQL::Translator->new(
725 debug => $debug || 0,
726 trace => $trace || 0,
727 no_comments => $no_comments || 0,
728 show_warnings => $show_warnings || 0,
729 add_drop_table => $add_drop_table || 0,
730 validate => $validate || 0,
732 'DBIx::Schema' => $schema,
735 'prefix' => 'My::Schema',
739 $translator->parser('SQL::Translator::Parser::DBIx::Class');
740 $translator->producer('SQL::Translator::Producer::DBIx::Class::File');
742 my $output = $translator->translate(@args) or die
743 "Error: " . $translator->error;
747 You could use L<Module::Find> to search for all subclasses in the MyDB::*
748 namespace, which is currently left as an exercise for the reader.
750 =head2 Schema versioning
752 The following example shows simplistically how you might use DBIx::Class to
753 deploy versioned schemas to your customers. The basic process is as follows:
759 Create a DBIx::Class schema
771 Modify schema to change functionality
775 Deploy update to customers
779 =head3 Create a DBIx::Class schema
781 This can either be done manually, or generated from an existing database as
782 described under C<Schema import/export>.
784 =head3 Save the schema
786 Use C<sqlt> to transform your schema into an SQL script suitable for your
787 customer's database. E.g. for MySQL:
789 sqlt --from SQL::Translator::Parser::DBIx::Class
791 --DBIx::Class "MySchema.pm" > Schema1.mysql.sql
793 If you need to target databases from multiple vendors, just generate an SQL
794 script suitable for each. To support PostgreSQL too:
796 sqlt --from SQL::Translator::DBIx::Class
798 --DBIx::Class "MySchema.pm" > Schema1.pgsql.sql
800 =head3 Deploy to customers
802 There are several ways you could deploy your schema. These are probably
803 beyond the scope of this recipe, but might include:
809 Require customer to apply manually using their RDBMS.
813 Package along with your app, making database dump/schema update/tests
814 all part of your install.
818 =head3 Modify the schema to change functionality
820 As your application evolves, it may be necessary to modify your schema to
821 change functionality. Once the changes are made to your schema in DBIx::Class,
822 export the modified schema as before, taking care not to overwrite the original:
824 sqlt --from SQL::Translator::DBIx::Class
826 --DBIx::Class "Anything.pm" > Schema2.mysql.sql
828 Next, use sqlt-diff to create an SQL script that will update the customer's
831 sqlt-diff --to MySQL Schema1=MySQL Schema2=MySQL > SchemaUpdate.mysql.sql
833 =head3 Deploy update to customers
835 The schema update can be deployed to customers using the same method as before.
837 =head2 Setting limit dialect for SQL::Abstract::Limit
839 In some cases, SQL::Abstract::Limit cannot determine the dialect of
840 the remote SQL server by looking at the database handle. This is a
841 common problem when using the DBD::JDBC, since the DBD-driver only
842 know that in has a Java-driver available, not which JDBC driver the
843 Java component has loaded. This specifically sets the limit_dialect
844 to Microsoft SQL-server (See more names in SQL::Abstract::Limit
847 __PACKAGE__->storage->sql_maker->limit_dialect('mssql');
849 The JDBC bridge is one way of getting access to a MSSQL server from a platform
850 that Microsoft doesn't deliver native client libraries for. (e.g. Linux)
852 =head2 Setting quoting for the generated SQL.
854 If the database contains column names with spaces and/or reserved words, they
855 need to be quoted in the SQL queries. This is done using:
857 __PACKAGE__->storage->sql_maker->quote_char([ qw/[ ]/] );
858 __PACKAGE__->storage->sql_maker->name_sep('.');
860 The first sets the quote characters. Either a pair of matching
861 brackets, or a C<"> or C<'>:
863 __PACKAGE__->storage->sql_maker->quote_char('"');
865 Check the documentation of your database for the correct quote
866 characters to use. C<name_sep> needs to be set to allow the SQL
867 generator to put the quotes the correct place.
869 =head2 Overloading methods
871 L<DBIx::Class> uses the L<Class::C3> package, which provides for redispatch of
872 method calls. You have to use calls to C<next::method> to overload methods.
873 More information on using L<Class::C3> with L<DBIx::Class> can be found in
874 L<DBIx::Class::Manual::Component>.
876 =head3 Changing one field whenever another changes
878 For example, say that you have three columns, C<id>, C<number>, and
879 C<squared>. You would like to make changes to C<number> and have
880 C<squared> be automagically set to the value of C<number> squared.
881 You can accomplish this by overriding C<store_column>:
884 my ( $self, $name, $value ) = @_;
885 if ($name eq 'number') {
886 $self->squared($value * $value);
888 $self->next::method($name, $value);
891 Note that the hard work is done by the call to C<next::method>, which
892 redispatches your call to store_column in the superclass(es).
894 =head3 Automatically creating related objects
896 You might have a class C<Artist> which has many C<CD>s. Further, if you
897 want to create a C<CD> object every time you insert an C<Artist> object.
898 You can accomplish this by overriding C<insert> on your objects:
901 my ( $self, @args ) = @_;
902 $self->next::method(@args);
903 $self->cds->new({})->fill_from_artist($self)->insert;
907 where C<fill_from_artist> is a method you specify in C<CD> which sets
908 values in C<CD> based on the data in the C<Artist> object you pass in.
910 =head2 Debugging DBIx::Class objects with Data::Dumper
912 L<Data::Dumper> can be a very useful tool for debugging, but sometimes it can
913 be hard to find the pertinent data in all the data it can generate.
914 Specifically, if one naively tries to use it like so,
918 my $cd = $schema->resultset('CD')->find(1);
921 several pages worth of data from the CD object's schema and result source will
922 be dumped to the screen. Since usually one is only interested in a few column
923 values of the object, this is not very helpful.
925 Luckily, it is possible to modify the data before L<Data::Dumper> outputs
926 it. Simply define a hook that L<Data::Dumper> will call on the object before
927 dumping it. For example,
934 result_source => undef,
942 local $Data::Dumper::Freezer = '_dumper_hook';
944 my $cd = $schema->resultset('CD')->find(1);
946 # dumps $cd without its ResultSource
948 If the structure of your schema is such that there is a common base class for
949 all your table classes, simply put a method similar to C<_dumper_hook> in the
950 base class and set C<$Data::Dumper::Freezer> to its name and L<Data::Dumper>
951 will automagically clean up your data before printing it. See
952 L<Data::Dumper/EXAMPLES> for more information.
954 =head2 Retrieving a row object's Schema
956 It is possible to get a Schema object from a row object like so:
958 my $schema = $cd->result_source->schema;
959 # use the schema as normal:
960 my $artist_rs = $schema->resultset('Artist');
962 This can be useful when you don't want to pass around a Schema object to every
967 When you enable L<DBIx::Class::Storage>'s debugging it prints the SQL
968 executed as well as notifications of query completion and transaction
969 begin/commit. If you'd like to profile the SQL you can subclass the
970 L<DBIx::Class::Storage::Statistics> class and write your own profiling
973 package My::Profiler;
976 use base 'DBIx::Class::Storage::Statistics';
978 use Time::HiRes qw(time);
987 print "Executing $sql: ".join(', ', @params)."\n";
996 printf("Execution took %0.4f seconds.\n", time() - $start);
1002 You can then install that class as the debugging object:
1004 __PACKAGE__->storage()->debugobj(new My::Profiler());
1005 __PACKAGE__->storage()->debug(1);
1007 A more complicated example might involve storing each execution of SQL in an
1015 my $elapsed = time() - $start;
1016 push(@{ $calls{$sql} }, {
1022 You could then create average, high and low execution times for an SQL
1023 statement and dig down to see if certain parameters cause aberrant behavior.
1025 =head2 Getting the value of the primary key for the last database insert
1027 AKA getting last_insert_id
1029 If you are using PK::Auto, this is straightforward:
1031 my $foo = $rs->create(\%blah);
1033 my $id = $foo->id; # foo->my_primary_key_field will also work.
1035 If you are not using autoincrementing primary keys, this will probably
1036 not work, but then you already know the value of the last primary key anyway.
1038 =head2 Dynamic Sub-classing DBIx::Class proxy classes
1039 (AKA multi-class object inflation from one table)
1041 L<DBIx::Class> classes are proxy classes, therefore some different
1042 techniques need to be employed for more than basic subclassing. In
1043 this example we have a single user table that carries a boolean bit
1044 for admin. We would like like to give the admin users
1045 objects(L<DBIx::Class::Row>) the same methods as a regular user but
1046 also special admin only methods. It doesn't make sense to create two
1047 seperate proxy-class files for this. We would be copying all the user
1048 methods into the Admin class. There is a cleaner way to accomplish
1051 Overriding the C<inflate_result> method within the User proxy-class
1052 gives us the effect we want. This method is called by
1053 L<DBIx::Class::ResultSet> when inflating a result from storage. So we
1054 grab the object being returned, inspect the values we are looking for,
1055 bless it if it's an admin object, and then return it. See the example
1058 B<Schema Definition>
1062 use base qw/DBIx::Class::Schema/;
1064 __PACKAGE__->load_classes(qw/User/);
1067 B<Proxy-Class definitions>
1069 package DB::Schema::User;
1073 use base qw/DBIx::Class/;
1075 ### Defined what our admin class is for ensure_class_loaded
1076 my $admin_class = __PACKAGE__ . '::Admin';
1078 __PACKAGE__->load_components(qw/Core/);
1080 __PACKAGE__->table('users');
1082 __PACKAGE__->add_columns(qw/user_id email password
1083 firstname lastname active
1086 __PACKAGE__->set_primary_key('user_id');
1088 sub inflate_result {
1090 my $ret = $self->next::method(@_);
1091 if( $ret->admin ) {### If this is an admin rebless for extra functions
1092 $self->ensure_class_loaded( $admin_class );
1093 bless $ret, $admin_class;
1099 print "I am a regular user.\n";
1104 package DB::Schema::User::Admin;
1108 use base qw/DB::Schema::User/;
1112 print "I am an admin.\n";
1118 print "I am doing admin stuff\n";
1122 B<Test File> test.pl
1128 my $user_data = { email => 'someguy@place.com',
1129 password => 'pass1',
1132 my $admin_data = { email => 'someadmin@adminplace.com',
1133 password => 'pass2',
1136 my $schema = DB::Schema->connection('dbi:Pg:dbname=test');
1138 $schema->resultset('User')->create( $user_data );
1139 $schema->resultset('User')->create( $admin_data );
1141 ### Now we search for them
1142 my $user = $schema->resultset('User')->single( $user_data );
1143 my $admin = $schema->resultset('User')->single( $admin_data );
1145 print ref $user, "\n";
1146 print ref $admin, "\n";
1148 print $user->password , "\n"; # pass1
1149 print $admin->password , "\n";# pass2; inherited from User
1150 print $user->hello , "\n";# I am a regular user.
1151 print $admin->hello, "\n";# I am an admin.
1153 ### The statement below will NOT print
1154 print "I can do admin stuff\n" if $user->can('do_admin_stuff');
1155 ### The statement below will print
1156 print "I can do admin stuff\n" if $admin->can('do_admin_stuff');
1158 =head2 Skip object creation for faster results
1160 DBIx::Class is not built for speed, it's built for convenience and
1161 ease of use, but sometimes you just need to get the data, and skip the
1164 To do this simply use L<DBIx::Class::ResultClass::HashRefInflator>.
1166 my $rs = $schema->resultset('CD');
1168 $rs->result_class('DBIx::Class::ResultClass::HashRefInflator');
1170 my $hash_ref = $rs->find(1);
1174 =head2 Get raw data for blindingly fast results
1176 If the C<inflate_result> solution above is not fast enough for you, you
1177 can use a DBIx::Class to return values exactly as they come out of the
1178 data base with none of the convenience methods wrapped round them.
1180 This is used like so:-
1182 my $cursor = $rs->cursor
1183 while (my @vals = $cursor->next) {
1184 # use $val[0..n] here
1187 You will need to map the array offsets to particular columns (you can
1188 use the I<select> attribute of C<search()> to force ordering).
1190 =head2 Want to know if find_or_create found or created a row?
1192 Just use C<find_or_new> instead, then check C<in_storage>:
1194 my $obj = $rs->find_or_new({ blah => 'blarg' });
1195 unless ($obj->in_storage) {
1197 # do whatever else you wanted if it was a new row
1200 =head3 Wrapping/overloading a column accessor
1202 Problem: Say you have a table "Camera" and want to associate a description
1203 with each camera. For most cameras, you'll be able to generate the description from
1204 the other columns. However, in a few special cases you may want to associate a
1205 custom description with a camera.
1209 In your database schema, define a description field in the "Camera" table that
1210 can contain text and null values.
1212 In DBIC, we'll overload the column accessor to provide a sane default if no
1213 custom description is defined. The accessor will either return or generate the
1214 description, depending on whether the field is null or not.
1216 First, in your "Camera" schema class, define the description field as follows:
1218 __PACKAGE__->add_columns(description => { accessor => '_description' });
1220 Next, we'll define the accessor-wrapper subroutine:
1225 # If there is an update to the column, we'll let the original accessor
1227 return $self->_description(@_) if @_;
1229 # Fetch the column value.
1230 my $description = $self->_description;
1232 # If there's something in the description field, then just return that.
1233 return $description if defined $description && length $descripton;
1235 # Otherwise, generate a description.
1236 return $self->generate_description;