remove_columns() sanitization by Oleg Pronin
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Manual / Cookbook.pod
CommitLineData
3b44ccc6 1=head1 NAME
9c82c181 2
40dbc108 3DBIx::Class::Manual::Cookbook - Miscellaneous recipes
ee38fa40 4
d2f3e87b 5=head1 SEARCHING
2913b2d3 6
d2f3e87b 7=head2 Paged results
faf62551 8
bade79c4 9When you expect a large number of results, you can ask L<DBIx::Class> for a
264f1571 10paged resultset, which will fetch only a defined number of records at a time:
faf62551 11
bade79c4 12 my $rs = $schema->resultset('Artist')->search(
5e8b1b2a 13 undef,
bade79c4 14 {
15 page => 1, # page to return (defaults to 1)
16 rows => 10, # number of results per page
17 },
18 );
faf62551 19
bade79c4 20 return $rs->all(); # all records for page 1
faf62551 21
bade79c4 22The C<page> attribute does not have to be specified in your search:
23
24 my $rs = $schema->resultset('Artist')->search(
5e8b1b2a 25 undef,
bade79c4 26 {
27 rows => 10,
28 }
29 );
faf62551 30
bade79c4 31 return $rs->page(1); # DBIx::Class::ResultSet containing first 10 records
faf62551 32
264f1571 33In either of the above cases, you can get a L<Data::Page> object for the
bade79c4 34resultset (suitable for use in e.g. a template) using the C<pager> method:
faf62551 35
bade79c4 36 return $rs->pager();
faf62551 37
d2f3e87b 38=head2 Complex WHERE clauses
2913b2d3 39
40dbc108 40Sometimes you need to formulate a query using specific operators:
41
ea6309e2 42 my @albums = $schema->resultset('Album')->search({
35d4fe78 43 artist => { 'like', '%Lamb%' },
44 title => { 'like', '%Fear of Fours%' },
45 });
40dbc108 46
47This results in something like the following C<WHERE> clause:
48
35d4fe78 49 WHERE artist LIKE '%Lamb%' AND title LIKE '%Fear of Fours%'
40dbc108 50
51Other queries might require slightly more complex logic:
52
ea6309e2 53 my @albums = $schema->resultset('Album')->search({
35d4fe78 54 -or => [
55 -and => [
56 artist => { 'like', '%Smashing Pumpkins%' },
57 title => 'Siamese Dream',
58 ],
59 artist => 'Starchildren',
60 ],
61 });
40dbc108 62
63This results in the following C<WHERE> clause:
64
35d4fe78 65 WHERE ( artist LIKE '%Smashing Pumpkins%' AND title = 'Siamese Dream' )
66 OR artist = 'Starchildren'
40dbc108 67
68For more information on generating complex queries, see
69L<SQL::Abstract/WHERE CLAUSES>.
ee38fa40 70
b9823354 71=head2 Retrieve one and only one row from a resultset
72
73Sometimes you need only the first "top" row of a resultset. While this can be
74easily done with L<< $rs->first|DBIx::Class::ResultSet/first >>, it is suboptimal,
75as a full blown cursor for the resultset will be created and then immediately
76destroyed after fetching the first row object.
77L<< $rs->single|DBIx::Class::ResultSet/single >> is
78designed specifically for this case - it will grab the first returned result
79without even instantiating a cursor.
80
81Before replacing all your calls to C<first()> with C<single()> please observe the
82following CAVEATS:
83
84=over
85
86=item *
87While single() takes a search condition just like search() does, it does
88_not_ accept search attributes. However one can always chain a single() to
89a search():
90
91 my $top_cd = $cd_rs -> search({}, { order_by => 'rating' }) -> single;
92
93
94=item *
95Since single() is the engine behind find(), it is designed to fetch a
96single row per database query. Thus a warning will be issued when the
97underlying SELECT returns more than one row. Sometimes however this usage
98is valid: i.e. we have an arbitrary number of cd's but only one of them is
99at the top of the charts at any given time. If you know what you are doing,
100you can silence the warning by explicitly limiting the resultset size:
101
102 my $top_cd = $cd_rs -> search ({}, { order_by => 'rating', rows => 1 }) -> single;
103
104=back
105
d2f3e87b 106=head2 Arbitrary SQL through a custom ResultSource
321d9634 107
108Sometimes you have to run arbitrary SQL because your query is too complex
109(e.g. it contains Unions, Sub-Selects, Stored Procedures, etc.) or has to
110be optimized for your database in a special way, but you still want to
111get the results as a L<DBIx::Class::ResultSet>.
112The recommended way to accomplish this is by defining a separate ResultSource
113for your query. You can then inject complete SQL statements using a scalar
114reference (this is a feature of L<SQL::Abstract>).
115
116Say you want to run a complex custom query on your user data, here's what
117you have to add to your User class:
118
119 package My::Schema::User;
120
121 use base qw/DBIx::Class/;
122
123 # ->load_components, ->table, ->add_columns, etc.
124
125 # Make a new ResultSource based on the User class
126 my $source = __PACKAGE__->result_source_instance();
127 my $new_source = $source->new( $source );
128 $new_source->source_name( 'UserFriendsComplex' );
129
130 # Hand in your query as a scalar reference
131 # It will be added as a sub-select after FROM,
132 # so pay attention to the surrounding brackets!
133 $new_source->name( \<<SQL );
134 ( SELECT u.* FROM user u
135 INNER JOIN user_friends f ON u.id = f.user_id
136 WHERE f.friend_user_id = ?
137 UNION
138 SELECT u.* FROM user u
139 INNER JOIN user_friends f ON u.id = f.friend_user_id
140 WHERE f.user_id = ? )
141 SQL
142
143 # Finally, register your new ResultSource with your Schema
dbe79da9 144 My::Schema->register_extra_source( 'UserFriendsComplex' => $new_source );
321d9634 145
146Next, you can execute your complex query using bind parameters like this:
147
148 my $friends = [ $schema->resultset( 'UserFriendsComplex' )->search( {},
149 {
150 bind => [ 12345, 12345 ]
151 }
152 ) ];
153
d00a5c68 154... and you'll get back a perfect L<DBIx::Class::ResultSet> (except, of course,
155that you cannot modify the rows it contains, ie. cannot call L</update>,
156L</delete>, ... on it).
157
158If you prefer to have the definitions of these custom ResultSources in separate
159files (instead of stuffing all of them into the same resultset class), you can
160achieve the same with subclassing the resultset class and defining the
161ResultSource there:
162
163 package My::Schema::UserFriendsComplex;
164
165 use My::Schema::User;
166 use base qw/My::Schema::User/;
167
168 __PACKAGE__->table('dummy'); # currently must be called before anything else
169
170 # Hand in your query as a scalar reference
171 # It will be added as a sub-select after FROM,
172 # so pay attention to the surrounding brackets!
173 __PACKAGE__->name( \<<SQL );
174 ( SELECT u.* FROM user u
175 INNER JOIN user_friends f ON u.id = f.user_id
176 WHERE f.friend_user_id = ?
177 UNION
178 SELECT u.* FROM user u
179 INNER JOIN user_friends f ON u.id = f.friend_user_id
180 WHERE f.user_id = ? )
181 SQL
182
183TIMTOWDI.
321d9634 184
d2f3e87b 185=head2 Using specific columns
faf62551 186
324572ca 187When you only want specific columns from a table, you can use
188C<columns> to specify which ones you need. This is useful to avoid
189loading columns with large amounts of data that you aren't about to
190use anyway:
faf62551 191
bade79c4 192 my $rs = $schema->resultset('Artist')->search(
5e8b1b2a 193 undef,
bade79c4 194 {
5e8b1b2a 195 columns => [qw/ name /]
bade79c4 196 }
197 );
faf62551 198
bade79c4 199 # Equivalent SQL:
200 # SELECT artist.name FROM artist
faf62551 201
324572ca 202This is a shortcut for C<select> and C<as>, see below. C<columns>
203cannot be used together with C<select> and C<as>.
204
d2f3e87b 205=head2 Using database functions or stored procedures
faf62551 206
bade79c4 207The combination of C<select> and C<as> can be used to return the result of a
208database function or stored procedure as a column value. You use C<select> to
209specify the source for your column value (e.g. a column name, function, or
210stored procedure name). You then use C<as> to set the column name you will use
211to access the returned value:
faf62551 212
bade79c4 213 my $rs = $schema->resultset('Artist')->search(
324572ca 214 {},
bade79c4 215 {
216 select => [ 'name', { LENGTH => 'name' } ],
217 as => [qw/ name name_length /],
218 }
219 );
faf62551 220
bade79c4 221 # Equivalent SQL:
98b65433 222 # SELECT name name, LENGTH( name )
bade79c4 223 # FROM artist
faf62551 224
d676881f 225Note that the C< as > attribute has absolutely nothing to with the sql
226syntax C< SELECT foo AS bar > (see the documentation in
227L<DBIx::Class::ResultSet/ATTRIBUTES>). If your alias exists as a
228column in your base class (i.e. it was added with C<add_columns>), you
229just access it as normal. Our C<Artist> class has a C<name> column, so
230we just use the C<name> accessor:
faf62551 231
bade79c4 232 my $artist = $rs->first();
233 my $name = $artist->name();
faf62551 234
235If on the other hand the alias does not correspond to an existing column, you
324572ca 236have to fetch the value using the C<get_column> accessor:
faf62551 237
bade79c4 238 my $name_length = $artist->get_column('name_length');
faf62551 239
bade79c4 240If you don't like using C<get_column>, you can always create an accessor for
faf62551 241any of your aliases using either of these:
242
bade79c4 243 # Define accessor manually:
244 sub name_length { shift->get_column('name_length'); }
faf62551 245
bade79c4 246 # Or use DBIx::Class::AccessorGroup:
247 __PACKAGE__->mk_group_accessors('column' => 'name_length');
faf62551 248
d2f3e87b 249=head2 SELECT DISTINCT with multiple columns
faf62551 250
bade79c4 251 my $rs = $schema->resultset('Foo')->search(
324572ca 252 {},
bade79c4 253 {
254 select => [
255 { distinct => [ $source->columns ] }
256 ],
d676881f 257 as => [ $source->columns ] # remember 'as' is not the same as SQL AS :-)
bade79c4 258 }
259 );
faf62551 260
d2f3e87b 261=head2 SELECT COUNT(DISTINCT colname)
6607ee1b 262
bade79c4 263 my $rs = $schema->resultset('Foo')->search(
324572ca 264 {},
bade79c4 265 {
266 select => [
267 { count => { distinct => 'colname' } }
268 ],
269 as => [ 'count' ]
270 }
271 );
6607ee1b 272
3d565896 273 my $count = $rs->next->get_column('count');
274
d2f3e87b 275=head2 Grouping results
bade79c4 276
277L<DBIx::Class> supports C<GROUP BY> as follows:
278
279 my $rs = $schema->resultset('Artist')->search(
324572ca 280 {},
bade79c4 281 {
282 join => [qw/ cds /],
51458a6a 283 select => [ 'name', { count => 'cds.id' } ],
bade79c4 284 as => [qw/ name cd_count /],
285 group_by => [qw/ name /]
286 }
287 );
6607ee1b 288
bade79c4 289 # Equivalent SQL:
51458a6a 290 # SELECT name, COUNT( cd.id ) FROM artist
291 # LEFT JOIN cd ON artist.id = cd.artist
bade79c4 292 # GROUP BY name
6607ee1b 293
d676881f 294Please see L<DBIx::Class::ResultSet/ATTRIBUTES> documentation if you
295are in any way unsure about the use of the attributes above (C< join
296>, C< select >, C< as > and C< group_by >).
297
d2f3e87b 298=head2 Predefined searches
74dc2edc 299
324572ca 300You can write your own L<DBIx::Class::ResultSet> class by inheriting from it
74dc2edc 301and define often used searches as methods:
302
303 package My::DBIC::ResultSet::CD;
304 use strict;
305 use warnings;
306 use base 'DBIx::Class::ResultSet';
307
308 sub search_cds_ordered {
309 my ($self) = @_;
310
311 return $self->search(
312 {},
313 { order_by => 'name DESC' },
314 );
315 }
316
317 1;
318
319To use your resultset, first tell DBIx::Class to create an instance of it
320for you, in your My::DBIC::Schema::CD class:
321
9dc1bfce 322 # class definition as normal
323 __PACKAGE__->load_components(qw/ Core /);
324 __PACKAGE__->table('cd');
325
326 # tell DBIC to use the custom ResultSet class
74dc2edc 327 __PACKAGE__->resultset_class('My::DBIC::ResultSet::CD');
328
9dc1bfce 329Note that C<resultset_class> must be called after C<load_components> and C<table>, or you will get errors about missing methods.
330
74dc2edc 331Then call your new method in your code:
332
333 my $ordered_cds = $schema->resultset('CD')->search_cds_ordered();
334
d2f3e87b 335=head2 Using SQL functions on the left hand side of a comparison
1c133e22 336
337Using SQL functions on the left hand side of a comparison is generally
338not a good idea since it requires a scan of the entire table. However,
339it can be accomplished with C<DBIx::Class> when necessary.
340
341If you do not have quoting on, simply include the function in your search
342specification as you would any column:
343
344 $rs->search({ 'YEAR(date_of_birth)' => 1979 });
345
346With quoting on, or for a more portable solution, use the C<where>
347attribute:
348
349 $rs->search({}, { where => \'YEAR(date_of_birth) = 1979' });
350
351=begin hidden
352
353(When the bind args ordering bug is fixed, this technique will be better
354and can replace the one above.)
355
356With quoting on, or for a more portable solution, use the C<where> and
357C<bind> attributes:
358
359 $rs->search({}, {
360 where => \'YEAR(date_of_birth) = ?',
361 bind => [ 1979 ]
362 });
363
364=end hidden
365
d2f3e87b 366=head1 JOINS AND PREFETCHING
367
87980de7 368=head2 Using joins and prefetch
369
bade79c4 370You can use the C<join> attribute to allow searching on, or sorting your
371results by, one or more columns in a related table. To return all CDs matching
372a particular artist name:
ea6309e2 373
bade79c4 374 my $rs = $schema->resultset('CD')->search(
375 {
376 'artist.name' => 'Bob Marley'
377 },
378 {
51458a6a 379 join => 'artist', # join the artist table
bade79c4 380 }
381 );
382
383 # Equivalent SQL:
384 # SELECT cd.* FROM cd
385 # JOIN artist ON cd.artist = artist.id
386 # WHERE artist.name = 'Bob Marley'
387
388If required, you can now sort on any column in the related tables by including
389it in your C<order_by> attribute:
390
391 my $rs = $schema->resultset('CD')->search(
392 {
393 'artist.name' => 'Bob Marley'
394 },
395 {
51458a6a 396 join => 'artist',
bade79c4 397 order_by => [qw/ artist.name /]
398 }
2f81ed0f 399 );
ea6309e2 400
bade79c4 401 # Equivalent SQL:
402 # SELECT cd.* FROM cd
403 # JOIN artist ON cd.artist = artist.id
404 # WHERE artist.name = 'Bob Marley'
405 # ORDER BY artist.name
ea6309e2 406
bade79c4 407Note that the C<join> attribute should only be used when you need to search or
408sort using columns in a related table. Joining related tables when you only
409need columns from the main table will make performance worse!
ea6309e2 410
bade79c4 411Now let's say you want to display a list of CDs, each with the name of the
412artist. The following will work fine:
ea6309e2 413
bade79c4 414 while (my $cd = $rs->next) {
415 print "CD: " . $cd->title . ", Artist: " . $cd->artist->name;
416 }
ea6309e2 417
bade79c4 418There is a problem however. We have searched both the C<cd> and C<artist> tables
419in our main query, but we have only returned data from the C<cd> table. To get
420the artist name for any of the CD objects returned, L<DBIx::Class> will go back
421to the database:
ea6309e2 422
bade79c4 423 SELECT artist.* FROM artist WHERE artist.id = ?
ea6309e2 424
425A statement like the one above will run for each and every CD returned by our
426main query. Five CDs, five extra queries. A hundred CDs, one hundred extra
427queries!
428
bade79c4 429Thankfully, L<DBIx::Class> has a C<prefetch> attribute to solve this problem.
897342e4 430This allows you to fetch results from related tables in advance:
ea6309e2 431
bade79c4 432 my $rs = $schema->resultset('CD')->search(
433 {
434 'artist.name' => 'Bob Marley'
435 },
436 {
51458a6a 437 join => 'artist',
bade79c4 438 order_by => [qw/ artist.name /],
51458a6a 439 prefetch => 'artist' # return artist data too!
bade79c4 440 }
441 );
ea6309e2 442
bade79c4 443 # Equivalent SQL (note SELECT from both "cd" and "artist"):
444 # SELECT cd.*, artist.* FROM cd
445 # JOIN artist ON cd.artist = artist.id
446 # WHERE artist.name = 'Bob Marley'
447 # ORDER BY artist.name
ea6309e2 448
449The code to print the CD list remains the same:
450
bade79c4 451 while (my $cd = $rs->next) {
452 print "CD: " . $cd->title . ", Artist: " . $cd->artist->name;
453 }
ea6309e2 454
bade79c4 455L<DBIx::Class> has now prefetched all matching data from the C<artist> table,
ea6309e2 456so no additional SQL statements are executed. You now have a much more
457efficient query.
458
77d6b403 459Note that as of L<DBIx::Class> 0.05999_01, C<prefetch> I<can> be used with
460C<has_many> relationships.
ea6309e2 461
bade79c4 462Also note that C<prefetch> should only be used when you know you will
ea6309e2 463definitely use data from a related table. Pre-fetching related tables when you
464only need columns from the main table will make performance worse!
465
51458a6a 466=head2 Multiple joins
467
468In the examples above, the C<join> attribute was a scalar. If you
469pass an array reference instead, you can join to multiple tables. In
470this example, we want to limit the search further, using
471C<LinerNotes>:
472
473 # Relationships defined elsewhere:
474 # CD->belongs_to('artist' => 'Artist');
475 # CD->has_one('liner_notes' => 'LinerNotes', 'cd');
476 my $rs = $schema->resultset('CD')->search(
477 {
478 'artist.name' => 'Bob Marley'
479 'liner_notes.notes' => { 'like', '%some text%' },
480 },
481 {
482 join => [qw/ artist liner_notes /],
483 order_by => [qw/ artist.name /],
484 }
485 );
486
487 # Equivalent SQL:
488 # SELECT cd.*, artist.*, liner_notes.* FROM cd
489 # JOIN artist ON cd.artist = artist.id
490 # JOIN liner_notes ON cd.id = liner_notes.cd
491 # WHERE artist.name = 'Bob Marley'
492 # ORDER BY artist.name
493
d2f3e87b 494=head2 Multi-step joins
ea6309e2 495
496Sometimes you want to join more than one relationship deep. In this example,
bade79c4 497we want to find all C<Artist> objects who have C<CD>s whose C<LinerNotes>
498contain a specific string:
499
500 # Relationships defined elsewhere:
501 # Artist->has_many('cds' => 'CD', 'artist');
502 # CD->has_one('liner_notes' => 'LinerNotes', 'cd');
503
504 my $rs = $schema->resultset('Artist')->search(
505 {
506 'liner_notes.notes' => { 'like', '%some text%' },
507 },
508 {
509 join => {
510 'cds' => 'liner_notes'
511 }
512 }
513 );
ea6309e2 514
bade79c4 515 # Equivalent SQL:
516 # SELECT artist.* FROM artist
51458a6a 517 # LEFT JOIN cd ON artist.id = cd.artist
518 # LEFT JOIN liner_notes ON cd.id = liner_notes.cd
bade79c4 519 # WHERE liner_notes.notes LIKE '%some text%'
ea6309e2 520
521Joins can be nested to an arbitrary level. So if we decide later that we
522want to reduce the number of Artists returned based on who wrote the liner
523notes:
524
bade79c4 525 # Relationship defined elsewhere:
526 # LinerNotes->belongs_to('author' => 'Person');
527
528 my $rs = $schema->resultset('Artist')->search(
529 {
530 'liner_notes.notes' => { 'like', '%some text%' },
531 'author.name' => 'A. Writer'
532 },
533 {
534 join => {
535 'cds' => {
536 'liner_notes' => 'author'
ea6309e2 537 }
bade79c4 538 }
539 }
540 );
ea6309e2 541
bade79c4 542 # Equivalent SQL:
543 # SELECT artist.* FROM artist
51458a6a 544 # LEFT JOIN cd ON artist.id = cd.artist
545 # LEFT JOIN liner_notes ON cd.id = liner_notes.cd
546 # LEFT JOIN author ON author.id = liner_notes.author
bade79c4 547 # WHERE liner_notes.notes LIKE '%some text%'
548 # AND author.name = 'A. Writer'
87980de7 549
51458a6a 550=head2 Multi-step and multiple joins
551
552With various combinations of array and hash references, you can join
553tables in any combination you desire. For example, to join Artist to
554CD and Concert, and join CD to LinerNotes:
555
556 # Relationships defined elsewhere:
557 # Artist->has_many('concerts' => 'Concert', 'artist');
558
559 my $rs = $schema->resultset('Artist')->search(
560 { },
561 {
562 join => [
563 {
564 cds => 'liner_notes'
565 },
566 'concerts'
567 ],
568 }
569 );
570
571 # Equivalent SQL:
572 # SELECT artist.* FROM artist
573 # LEFT JOIN cd ON artist.id = cd.artist
574 # LEFT JOIN liner_notes ON cd.id = liner_notes.cd
575 # LEFT JOIN concert ON artist.id = concert.artist
576
897342e4 577=head2 Multi-step prefetch
578
579From 0.04999_05 onwards, C<prefetch> can be nested more than one relationship
580deep using the same syntax as a multi-step join:
581
582 my $rs = $schema->resultset('Tag')->search(
ac2803ef 583 {},
897342e4 584 {
585 prefetch => {
586 cd => 'artist'
587 }
588 }
589 );
590
591 # Equivalent SQL:
592 # SELECT tag.*, cd.*, artist.* FROM tag
51458a6a 593 # JOIN cd ON tag.cd = cd.id
594 # JOIN artist ON cd.artist = artist.id
897342e4 595
596Now accessing our C<cd> and C<artist> relationships does not need additional
597SQL statements:
598
599 my $tag = $rs->first;
600 print $tag->cd->artist->name;
601
d2f3e87b 602=head1 ROW-LEVEL OPERATIONS
603
604=head2 Retrieving a row object's Schema
605
606It is possible to get a Schema object from a row object like so:
607
608 my $schema = $cd->result_source->schema;
609 # use the schema as normal:
610 my $artist_rs = $schema->resultset('Artist');
611
612This can be useful when you don't want to pass around a Schema object to every
613method.
614
615=head2 Getting the value of the primary key for the last database insert
616
617AKA getting last_insert_id
618
619If you are using PK::Auto (which is a core component as of 0.07), this is
620straightforward:
621
622 my $foo = $rs->create(\%blah);
623 # do more stuff
624 my $id = $foo->id; # foo->my_primary_key_field will also work.
625
626If you are not using autoincrementing primary keys, this will probably
627not work, but then you already know the value of the last primary key anyway.
628
629=head2 Stringification
630
631Employ the standard stringification technique by using the C<overload>
632module.
633
634To make an object stringify itself as a single column, use something
635like this (replace C<foo> with the column/method of your choice):
636
637 use overload '""' => sub { shift->name}, fallback => 1;
638
639For more complex stringification, you can use an anonymous subroutine:
640
641 use overload '""' => sub { $_[0]->name . ", " .
642 $_[0]->address }, fallback => 1;
643
644=head3 Stringification Example
645
646Suppose we have two tables: C<Product> and C<Category>. The table
647specifications are:
648
649 Product(id, Description, category)
650 Category(id, Description)
651
652C<category> is a foreign key into the Category table.
653
654If you have a Product object C<$obj> and write something like
655
656 print $obj->category
657
658things will not work as expected.
659
660To obtain, for example, the category description, you should add this
661method to the class defining the Category table:
662
663 use overload "" => sub {
664 my $self = shift;
665
666 return $self->Description;
667 }, fallback => 1;
668
669=head2 Want to know if find_or_create found or created a row?
670
671Just use C<find_or_new> instead, then check C<in_storage>:
672
673 my $obj = $rs->find_or_new({ blah => 'blarg' });
674 unless ($obj->in_storage) {
675 $obj->insert;
676 # do whatever else you wanted if it was a new row
677 }
678
679=head2 Dynamic Sub-classing DBIx::Class proxy classes
680
681AKA multi-class object inflation from one table
682
683L<DBIx::Class> classes are proxy classes, therefore some different
684techniques need to be employed for more than basic subclassing. In
685this example we have a single user table that carries a boolean bit
686for admin. We would like like to give the admin users
687objects(L<DBIx::Class::Row>) the same methods as a regular user but
688also special admin only methods. It doesn't make sense to create two
689seperate proxy-class files for this. We would be copying all the user
690methods into the Admin class. There is a cleaner way to accomplish
691this.
692
693Overriding the C<inflate_result> method within the User proxy-class
694gives us the effect we want. This method is called by
695L<DBIx::Class::ResultSet> when inflating a result from storage. So we
696grab the object being returned, inspect the values we are looking for,
697bless it if it's an admin object, and then return it. See the example
698below:
699
700B<Schema Definition>
701
702 package DB::Schema;
703
704 use base qw/DBIx::Class::Schema/;
705
706 __PACKAGE__->load_classes(qw/User/);
707
708
709B<Proxy-Class definitions>
710
711 package DB::Schema::User;
712
713 use strict;
714 use warnings;
715 use base qw/DBIx::Class/;
716
717 ### Defined what our admin class is for ensure_class_loaded
718 my $admin_class = __PACKAGE__ . '::Admin';
719
720 __PACKAGE__->load_components(qw/Core/);
721
722 __PACKAGE__->table('users');
723
724 __PACKAGE__->add_columns(qw/user_id email password
725 firstname lastname active
726 admin/);
727
728 __PACKAGE__->set_primary_key('user_id');
729
730 sub inflate_result {
731 my $self = shift;
732 my $ret = $self->next::method(@_);
733 if( $ret->admin ) {### If this is an admin rebless for extra functions
734 $self->ensure_class_loaded( $admin_class );
735 bless $ret, $admin_class;
736 }
737 return $ret;
738 }
739
740 sub hello {
741 print "I am a regular user.\n";
742 return ;
743 }
744
745
746 package DB::Schema::User::Admin;
747
748 use strict;
749 use warnings;
750 use base qw/DB::Schema::User/;
751
752 sub hello
753 {
754 print "I am an admin.\n";
755 return;
756 }
757
758 sub do_admin_stuff
759 {
760 print "I am doing admin stuff\n";
761 return ;
762 }
763
764B<Test File> test.pl
765
766 use warnings;
767 use strict;
768 use DB::Schema;
769
770 my $user_data = { email => 'someguy@place.com',
771 password => 'pass1',
772 admin => 0 };
773
774 my $admin_data = { email => 'someadmin@adminplace.com',
775 password => 'pass2',
776 admin => 1 };
777
778 my $schema = DB::Schema->connection('dbi:Pg:dbname=test');
779
780 $schema->resultset('User')->create( $user_data );
781 $schema->resultset('User')->create( $admin_data );
782
783 ### Now we search for them
784 my $user = $schema->resultset('User')->single( $user_data );
785 my $admin = $schema->resultset('User')->single( $admin_data );
786
787 print ref $user, "\n";
788 print ref $admin, "\n";
789
790 print $user->password , "\n"; # pass1
791 print $admin->password , "\n";# pass2; inherited from User
792 print $user->hello , "\n";# I am a regular user.
793 print $admin->hello, "\n";# I am an admin.
794
795 ### The statement below will NOT print
796 print "I can do admin stuff\n" if $user->can('do_admin_stuff');
797 ### The statement below will print
798 print "I can do admin stuff\n" if $admin->can('do_admin_stuff');
799
a5b29361 800=head2 Skip row object creation for faster results
d2f3e87b 801
802DBIx::Class is not built for speed, it's built for convenience and
803ease of use, but sometimes you just need to get the data, and skip the
804fancy objects.
805
806To do this simply use L<DBIx::Class::ResultClass::HashRefInflator>.
807
808 my $rs = $schema->resultset('CD');
809
810 $rs->result_class('DBIx::Class::ResultClass::HashRefInflator');
811
812 my $hash_ref = $rs->find(1);
a5b29361 813
d2f3e87b 814Wasn't that easy?
815
816=head2 Get raw data for blindingly fast results
817
818If the L<HashRefInflator|DBIx::Class::ResultClass::HashRefInflator> solution
819above is not fast enough for you, you can use a DBIx::Class to return values
820exactly as they come out of the data base with none of the convenience methods
821wrapped round them.
822
823This is used like so:-
824
825 my $cursor = $rs->cursor
826 while (my @vals = $cursor->next) {
827 # use $val[0..n] here
828 }
829
830You will need to map the array offsets to particular columns (you can
831use the I<select> attribute of C<search()> to force ordering).
832
833=head1 RESULTSET OPERATIONS
834
835=head2 Getting Schema from a ResultSet
836
837To get the schema object from a result set, do the following:
838
839 $rs->result_source->schema
840
841=head2 Getting Columns Of Data
842
843AKA Aggregating Data
ac2803ef 844
845If you want to find the sum of a particular column there are several
846ways, the obvious one is to use search:
847
848 my $rs = $schema->resultset('Items')->search(
849 {},
850 {
851 select => [ { sum => 'Cost' } ],
d676881f 852 as => [ 'total_cost' ], # remember this 'as' is for DBIx::Class::ResultSet not SQL
ac2803ef 853 }
854 );
855 my $tc = $rs->first->get_column('total_cost');
856
857Or, you can use the L<DBIx::Class::ResultSetColumn>, which gets
858returned when you ask the C<ResultSet> for a column using
859C<get_column>:
860
861 my $cost = $schema->resultset('Items')->get_column('Cost');
862 my $tc = $cost->sum;
863
864With this you can also do:
865
866 my $minvalue = $cost->min;
867 my $maxvalue = $cost->max;
868
869Or just iterate through the values of this column only:
870
871 while ( my $c = $cost->next ) {
872 print $c;
873 }
874
875 foreach my $c ($cost->all) {
876 print $c;
877 }
878
709353af 879C<ResultSetColumn> only has a limited number of built-in functions, if
880you need one that it doesn't have, then you can use the C<func> method
881instead:
882
883 my $avg = $cost->func('AVERAGE');
884
885This will cause the following SQL statement to be run:
886
887 SELECT AVERAGE(Cost) FROM Items me
888
889Which will of course only work if your database supports this function.
ac2803ef 890See L<DBIx::Class::ResultSetColumn> for more documentation.
891
204e5c03 892=head2 Creating a result set from a set of rows
893
894Sometimes you have a (set of) row objects that you want to put into a
895resultset without the need to hit the DB again. You can do that by using the
896L<set_cache|DBIx::Class::Resultset/set_cache> method:
897
2d7a4e46 898 my @uploadable_groups;
204e5c03 899 while (my $group = $groups->next) {
900 if ($group->can_upload($self)) {
901 push @uploadable_groups, $group;
902 }
903 }
904 my $new_rs = $self->result_source->resultset;
905 $new_rs->set_cache(\@uploadable_groups);
906 return $new_rs;
907
908
d2f3e87b 909=head1 USING RELATIONSHIPS
acee4e4d 910
d2f3e87b 911=head2 Create a new row in a related table
acee4e4d 912
6f1434fd 913 my $author = $book->create_related('author', { name => 'Fred'});
acee4e4d 914
d2f3e87b 915=head2 Search in a related table
acee4e4d 916
917Only searches for books named 'Titanic' by the author in $author.
918
6f1434fd 919 my $books_rs = $author->search_related('books', { name => 'Titanic' });
acee4e4d 920
d2f3e87b 921=head2 Delete data in a related table
acee4e4d 922
923Deletes only the book named Titanic by the author in $author.
924
6f1434fd 925 $author->delete_related('books', { name => 'Titanic' });
acee4e4d 926
d2f3e87b 927=head2 Ordering a relationship result set
f8bad769 928
929If you always want a relation to be ordered, you can specify this when you
930create the relationship.
931
6f1434fd 932To order C<< $book->pages >> by descending page_number, create the relation
933as follows:
f8bad769 934
6f1434fd 935 __PACKAGE__->has_many('pages' => 'Page', 'book', { order_by => \'page_number DESC'} );
f8bad769 936
7c0825ab 937=head2 Filtering a relationship result set
938
939If you want to get a filtered result set, you can just add add to $attr as follows:
940
941 __PACKAGE__->has_many('pages' => 'Page', 'book', { where => { scrap => 0 } } );
942
d2f3e87b 943=head2 Many-to-many relationships
f8bad769 944
d2f3e87b 945This is straightforward using L<ManyToMany|DBIx::Class::Relationship/many_to_many>:
f8bad769 946
d2f3e87b 947 package My::User;
6f1434fd 948 use base 'DBIx::Class';
949 __PACKAGE__->load_components('Core');
d2f3e87b 950 __PACKAGE__->table('user');
951 __PACKAGE__->add_columns(qw/id name/);
952 __PACKAGE__->set_primary_key('id');
953 __PACKAGE__->has_many('user_address' => 'My::UserAddress', 'user');
954 __PACKAGE__->many_to_many('addresses' => 'user_address', 'address');
87980de7 955
d2f3e87b 956 package My::UserAddress;
6f1434fd 957 use base 'DBIx::Class';
958 __PACKAGE__->load_components('Core');
d2f3e87b 959 __PACKAGE__->table('user_address');
960 __PACKAGE__->add_columns(qw/user address/);
961 __PACKAGE__->set_primary_key(qw/user address/);
962 __PACKAGE__->belongs_to('user' => 'My::User');
963 __PACKAGE__->belongs_to('address' => 'My::Address');
181a28f4 964
d2f3e87b 965 package My::Address;
6f1434fd 966 use base 'DBIx::Class';
967 __PACKAGE__->load_components('Core');
d2f3e87b 968 __PACKAGE__->table('address');
969 __PACKAGE__->add_columns(qw/id street town area_code country/);
970 __PACKAGE__->set_primary_key('id');
971 __PACKAGE__->has_many('user_address' => 'My::UserAddress', 'address');
972 __PACKAGE__->many_to_many('users' => 'user_address', 'user');
973
974 $rs = $user->addresses(); # get all addresses for a user
975 $rs = $address->users(); # get all users for an address
976
977=head1 TRANSACTIONS
978
979As of version 0.04001, there is improved transaction support in
980L<DBIx::Class::Storage> and L<DBIx::Class::Schema>. Here is an
981example of the recommended way to use it:
982
983 my $genus = $schema->resultset('Genus')->find(12);
984
985 my $coderef2 = sub {
986 $genus->extinct(1);
987 $genus->update;
988 };
70634260 989
181a28f4 990 my $coderef1 = sub {
35d4fe78 991 $genus->add_to_species({ name => 'troglodyte' });
992 $genus->wings(2);
993 $genus->update;
6f1434fd 994 $schema->txn_do($coderef2); # Can have a nested transaction. Only the outer will actualy commit
181a28f4 995 return $genus->species;
996 };
997
181a28f4 998 my $rs;
999 eval {
70634260 1000 $rs = $schema->txn_do($coderef1);
181a28f4 1001 };
1002
1003 if ($@) { # Transaction failed
1004 die "the sky is falling!" #
1005 if ($@ =~ /Rollback failed/); # Rollback failed
1006
1007 deal_with_failed_transaction();
35d4fe78 1008 }
87980de7 1009
181a28f4 1010Nested transactions will work as expected. That is, only the outermost
1011transaction will actually issue a commit to the $dbh, and a rollback
1012at any level of any transaction will cause the entire nested
1013transaction to fail. Support for savepoints and for true nested
40dbc108 1014transactions (for databases that support them) will hopefully be added
1015in the future.
ee38fa40 1016
d2f3e87b 1017=head1 SQL
ee38fa40 1018
d2f3e87b 1019=head2 Creating Schemas From An Existing Database
ea6309e2 1020
d2f3e87b 1021L<DBIx::Class::Schema::Loader> will connect to a database and create a
1022L<DBIx::Class::Schema> and associated sources by examining the database.
bade79c4 1023
d2f3e87b 1024The recommend way of achieving this is to use the
1025L<make_schema_at|DBIx::Class::Schema::Loader/make_schema_at> method:
bade79c4 1026
6f1434fd 1027 perl -MDBIx::Class::Schema::Loader=make_schema_at,dump_to_dir:./lib \
1028 -e 'make_schema_at("My::Schema", { debug => 1 }, [ "dbi:Pg:dbname=foo","postgres" ])'
362500af 1029
d2f3e87b 1030This will create a tree of files rooted at C<./lib/My/Schema/> containing
1031source definitions for all the tables found in the C<foo> database.
362500af 1032
d2f3e87b 1033=head2 Creating DDL SQL
362500af 1034
264f1571 1035The following functionality requires you to have L<SQL::Translator>
1036(also known as "SQL Fairy") installed.
362500af 1037
264f1571 1038To create a set of database-specific .sql files for the above schema:
362500af 1039
264f1571 1040 my $schema = My::Schema->connect($dsn);
1041 $schema->create_ddl_dir(['MySQL', 'SQLite', 'PostgreSQL'],
1042 '0.1',
d2f3e87b 1043 './dbscriptdir/'
264f1571 1044 );
1045
1046By default this will create schema files in the current directory, for
1047MySQL, SQLite and PostgreSQL, using the $VERSION from your Schema.pm.
1048
1049To create a new database using the schema:
1050
1051 my $schema = My::Schema->connect($dsn);
1052 $schema->deploy({ add_drop_tables => 1});
1053
1054To import created .sql files using the mysql client:
1055
1056 mysql -h "host" -D "database" -u "user" -p < My_Schema_1.0_MySQL.sql
1057
1058To create C<ALTER TABLE> conversion scripts to update a database to a
1059newer version of your schema at a later point, first set a new
d2f3e87b 1060C<$VERSION> in your Schema file, then:
264f1571 1061
1062 my $schema = My::Schema->connect($dsn);
1063 $schema->create_ddl_dir(['MySQL', 'SQLite', 'PostgreSQL'],
1064 '0.2',
1065 '/dbscriptdir/',
1066 '0.1'
1067 );
1068
1069This will produce new database-specific .sql files for the new version
1070of the schema, plus scripts to convert from version 0.1 to 0.2. This
1071requires that the files for 0.1 as created above are available in the
1072given directory to diff against.
362500af 1073
6f1434fd 1074=head2 Select from dual
16cd5b28 1075
1076Dummy tables are needed by some databases to allow calling functions
1077or expressions that aren't based on table content, for examples of how
1078this applies to various database types, see:
1079L<http://troels.arvin.dk/db/rdbms/#other-dummy_table>.
1080
1081Note: If you're using Oracles dual table don't B<ever> do anything
1082other than a select, if you CRUD on your dual table you *will* break
1083your database.
1084
1085Make a table class as you would for any other table
1086
1087 package MyAppDB::Dual;
1088 use strict;
1089 use warnings;
1090 use base 'DBIx::Class';
1091 __PACKAGE__->load_components("Core");
1092 __PACKAGE__->table("Dual");
1093 __PACKAGE__->add_columns(
1094 "dummy",
1095 { data_type => "VARCHAR2", is_nullable => 0, size => 1 },
1096 );
1097
1098Once you've loaded your table class select from it using C<select>
1099and C<as> instead of C<columns>
1100
1101 my $rs = $schema->resultset('Dual')->search(undef,
1102 { select => [ 'sydate' ],
1103 as => [ 'now' ]
1104 },
1105 );
1106
1107All you have to do now is be careful how you access your resultset, the below
1108will not work because there is no column called 'now' in the Dual table class
1109
1110 while (my $dual = $rs->next) {
1111 print $dual->now."\n";
1112 }
6f1434fd 1113 # Can't locate object method "now" via package "MyAppDB::Dual" at headshot.pl line 23.
16cd5b28 1114
1115You could of course use 'dummy' in C<as> instead of 'now', or C<add_columns> to
1116your Dual class for whatever you wanted to select from dual, but that's just
1117silly, instead use C<get_column>
1118
1119 while (my $dual = $rs->next) {
1120 print $dual->get_column('now')."\n";
1121 }
1122
1123Or use C<cursor>
1124
1125 my $cursor = $rs->cursor;
1126 while (my @vals = $cursor->next) {
1127 print $vals[0]."\n";
1128 }
1129
1130Or use L<DBIx::Class::ResultClass::HashRefInflator>
1131
1132 $rs->result_class('DBIx::Class::ResultClass::HashRefInflator');
1133 while ( my $dual = $rs->next ) {
1134 print $dual->{now}."\n";
1135 }
1136
1137Here are some example C<select> conditions to illustrate the different syntax
1138you could use for doing stuff like
1139C<oracles.heavily(nested(functions_can('take', 'lots'), OF), 'args')>
1140
1141 # get a sequence value
1142 select => [ 'A_SEQ.nextval' ],
1143
1144 # get create table sql
1145 select => [ { 'dbms_metadata.get_ddl' => [ "'TABLE'", "'ARTIST'" ]} ],
1146
1147 # get a random num between 0 and 100
1148 select => [ { "trunc" => [ { "dbms_random.value" => [0,100] } ]} ],
1149
1150 # what year is it?
1151 select => [ { 'extract' => [ \'year from sysdate' ] } ],
1152
1153 # do some math
1154 select => [ {'round' => [{'cos' => [ \'180 * 3.14159265359/180' ]}]}],
1155
1156 # which day of the week were you born on?
6f1434fd 1157 select => [{'to_char' => [{'to_date' => [ "'25-DEC-1980'", "'dd-mon-yyyy'" ]}, "'day'"]}],
16cd5b28 1158
1159 # select 16 rows from dual
1160 select => [ "'hello'" ],
1161 as => [ 'world' ],
1162 group_by => [ 'cube( 1, 2, 3, 4 )' ],
1163
1164
1165
d2f3e87b 1166=head2 Adding Indexes And Functions To Your SQL
362500af 1167
d2f3e87b 1168Often you will want indexes on columns on your table to speed up searching. To
1169do this, create a method called C<sqlt_deploy_hook> in the relevant source
1170class:
b0a20454 1171
d2f3e87b 1172 package My::Schema::Artist;
b0a20454 1173
d2f3e87b 1174 __PACKAGE__->table('artist');
1175 __PACKAGE__->add_columns(id => { ... }, name => { ... })
b0a20454 1176
d2f3e87b 1177 sub sqlt_deploy_hook {
1178 my ($self, $sqlt_table) = @_;
1179
1180 $sqlt_table->add_index(name => 'idx_name', fields => ['name']);
1181 }
1182
1183 1;
1184
1185Sometimes you might want to change the index depending on the type of the
1186database for which SQL is being generated:
1187
1188 my ($db_type = $sqlt_table->schema->translator->producer_type)
1189 =~ s/^SQL::Translator::Producer:://;
1190
1191You can also add hooks to the schema level to stop certain tables being
1192created:
1193
1194 package My::Schema;
1195
1196 ...
1197
1198 sub sqlt_deploy_hook {
1199 my ($self, $sqlt_schema) = @_;
1200
1201 $sqlt_schema->drop_table('table_name');
1202 }
1203
1204You could also add views or procedures to the output using
1205L<SQL::Translator::Schema/add_view> or
1206L<SQL::Translator::Schema/add_procedure>.
b0a20454 1207
362500af 1208=head2 Schema versioning
1209
1210The following example shows simplistically how you might use DBIx::Class to
1211deploy versioned schemas to your customers. The basic process is as follows:
1212
da4779ad 1213=over 4
1214
1215=item 1.
1216
1217Create a DBIx::Class schema
1218
1219=item 2.
1220
1221Save the schema
1222
1223=item 3.
1224
1225Deploy to customers
1226
1227=item 4.
1228
1229Modify schema to change functionality
1230
1231=item 5.
1232
1233Deploy update to customers
1234
1235=back
362500af 1236
d2f3e87b 1237B<Create a DBIx::Class schema>
362500af 1238
1239This can either be done manually, or generated from an existing database as
d2f3e87b 1240described under L</Creating Schemas From An Existing Database>
362500af 1241
d2f3e87b 1242B<Save the schema>
362500af 1243
d2f3e87b 1244Call L<DBIx::Class::Schema/create_ddl_dir> as above under L</Creating DDL SQL>.
362500af 1245
d2f3e87b 1246B<Deploy to customers>
362500af 1247
1248There are several ways you could deploy your schema. These are probably
1249beyond the scope of this recipe, but might include:
1250
da4779ad 1251=over 4
1252
1253=item 1.
1254
1255Require customer to apply manually using their RDBMS.
1256
1257=item 2.
1258
1259Package along with your app, making database dump/schema update/tests
362500af 1260all part of your install.
1261
da4779ad 1262=back
1263
d2f3e87b 1264B<Modify the schema to change functionality>
362500af 1265
264f1571 1266As your application evolves, it may be necessary to modify your schema
1267to change functionality. Once the changes are made to your schema in
1268DBIx::Class, export the modified schema and the conversion scripts as
d2f3e87b 1269in L</Creating DDL SQL>.
362500af 1270
d2f3e87b 1271B<Deploy update to customers>
362500af 1272
264f1571 1273Add the L<DBIx::Class::Schema::Versioned> schema component to your
1274Schema class. This will add a new table to your database called
ecea7937 1275C<dbix_class_schema_vesion> which will keep track of which version is installed
264f1571 1276and warn if the user trys to run a newer schema version than the
1277database thinks it has.
1278
1279Alternatively, you can send the conversion sql scripts to your
1280customers as above.
362500af 1281
d2f3e87b 1282=head2 Setting quoting for the generated SQL.
1283
1284If the database contains column names with spaces and/or reserved words, they
1285need to be quoted in the SQL queries. This is done using:
1286
1287 __PACKAGE__->storage->sql_maker->quote_char([ qw/[ ]/] );
1288 __PACKAGE__->storage->sql_maker->name_sep('.');
1289
1290The first sets the quote characters. Either a pair of matching
1291brackets, or a C<"> or C<'>:
1292
1293 __PACKAGE__->storage->sql_maker->quote_char('"');
1294
1295Check the documentation of your database for the correct quote
1296characters to use. C<name_sep> needs to be set to allow the SQL
1297generator to put the quotes the correct place.
1298
1299In most cases you should set these as part of the arguments passed to
d68b0c69 1300L<DBIx::Class::Schema/connect>:
d2f3e87b 1301
1302 my $schema = My::Schema->connect(
1303 'dbi:mysql:my_db',
1304 'db_user',
1305 'db_password',
1306 {
1307 quote_char => '"',
1308 name_sep => '.'
1309 }
1310 )
1311
7be93b07 1312=head2 Setting limit dialect for SQL::Abstract::Limit
1313
324572ca 1314In some cases, SQL::Abstract::Limit cannot determine the dialect of
1315the remote SQL server by looking at the database handle. This is a
1316common problem when using the DBD::JDBC, since the DBD-driver only
1317know that in has a Java-driver available, not which JDBC driver the
1318Java component has loaded. This specifically sets the limit_dialect
1319to Microsoft SQL-server (See more names in SQL::Abstract::Limit
1320-documentation.
7be93b07 1321
1322 __PACKAGE__->storage->sql_maker->limit_dialect('mssql');
1323
324572ca 1324The JDBC bridge is one way of getting access to a MSSQL server from a platform
7be93b07 1325that Microsoft doesn't deliver native client libraries for. (e.g. Linux)
1326
d2f3e87b 1327The limit dialect can also be set at connect time by specifying a
1328C<limit_dialect> key in the final hash as shown above.
2437a1e3 1329
05697a49 1330=head2 Working with PostgreSQL array types
1331
1332If your SQL::Abstract version (>= 1.50) supports it, you can assign to
1333PostgreSQL array values by passing array references in the C<\%columns>
1334(C<\%vals>) hashref of the L<DBIx::Class::ResultSet/create> and
1335L<DBIx::Class::Row/update> family of methods:
1336
1337 $resultset->create({
1338 numbers => [1, 2, 3]
1339 });
1340
1341 $row->update(
1342 {
1343 numbers => [1, 2, 3]
1344 },
1345 {
1346 day => '2008-11-24'
1347 }
1348 );
1349
1350In conditions (eg. C<\%cond> in the L<DBIx::Class::ResultSet/search> family of
1351methods) you cannot directly use array references (since this is interpreted as
1352a list of values to be C<OR>ed), but you can use the following syntax to force
1353passing them as bind values:
1354
1355 $resultset->search(
1356 {
1357 numbers => \[ '= ?', [1, 2, 3] ]
1358 }
1359 );
1360
1361See L<SQL::Abstract/array_datatypes> and L<SQL::Abstract/Literal SQL with
1362placeholders and bind values (subqueries)> for more explanation.
1363
d2f3e87b 1364=head1 BOOTSTRAPPING/MIGRATING
2437a1e3 1365
d2f3e87b 1366=head2 Easy migration from class-based to schema-based setup
2437a1e3 1367
d2f3e87b 1368You want to start using the schema-based approach to L<DBIx::Class>
1369(see L<SchemaIntro.pod>), but have an established class-based setup with lots
1370of existing classes that you don't want to move by hand. Try this nifty script
1371instead:
1372
1373 use MyDB;
1374 use SQL::Translator;
1375
1376 my $schema = MyDB->schema_instance;
2437a1e3 1377
d2f3e87b 1378 my $translator = SQL::Translator->new(
1379 debug => $debug || 0,
1380 trace => $trace || 0,
1381 no_comments => $no_comments || 0,
1382 show_warnings => $show_warnings || 0,
1383 add_drop_table => $add_drop_table || 0,
1384 validate => $validate || 0,
1385 parser_args => {
1386 'DBIx::Schema' => $schema,
1387 },
1388 producer_args => {
1389 'prefix' => 'My::Schema',
1390 },
1391 );
1392
1393 $translator->parser('SQL::Translator::Parser::DBIx::Class');
1394 $translator->producer('SQL::Translator::Producer::DBIx::Class::File');
1395
1396 my $output = $translator->translate(@args) or die
1397 "Error: " . $translator->error;
1398
1399 print $output;
2437a1e3 1400
d2f3e87b 1401You could use L<Module::Find> to search for all subclasses in the MyDB::*
1402namespace, which is currently left as an exercise for the reader.
2437a1e3 1403
d2f3e87b 1404=head1 OVERLOADING METHODS
086b93a2 1405
ab872312 1406L<DBIx::Class> uses the L<Class::C3> package, which provides for redispatch of
1407method calls, useful for things like default values and triggers. You have to
1408use calls to C<next::method> to overload methods. More information on using
1409L<Class::C3> with L<DBIx::Class> can be found in
086b93a2 1410L<DBIx::Class::Manual::Component>.
1411
d2f3e87b 1412=head2 Setting default values for a row
1413
1414It's as simple as overriding the C<new> method. Note the use of
1415C<next::method>.
1416
1417 sub new {
1418 my ( $class, $attrs ) = @_;
1419
1420 $attrs->{foo} = 'bar' unless defined $attrs->{foo};
1421
1422 my $new = $class->next::method($attrs);
1423
1424 return $new;
1425 }
1426
1427For more information about C<next::method>, look in the L<Class::C3>
1428documentation. See also L<DBIx::Class::Manual::Component> for more
1429ways to write your own base classes to do this.
1430
1431People looking for ways to do "triggers" with DBIx::Class are probably
1432just looking for this.
1433
1434=head2 Changing one field whenever another changes
086b93a2 1435
1436For example, say that you have three columns, C<id>, C<number>, and
1437C<squared>. You would like to make changes to C<number> and have
1438C<squared> be automagically set to the value of C<number> squared.
1439You can accomplish this by overriding C<store_column>:
1440
1441 sub store_column {
1442 my ( $self, $name, $value ) = @_;
1443 if ($name eq 'number') {
1444 $self->squared($value * $value);
1445 }
1446 $self->next::method($name, $value);
1447 }
1448
1449Note that the hard work is done by the call to C<next::method>, which
324572ca 1450redispatches your call to store_column in the superclass(es).
086b93a2 1451
d2f3e87b 1452=head2 Automatically creating related objects
086b93a2 1453
324572ca 1454You might have a class C<Artist> which has many C<CD>s. Further, if you
086b93a2 1455want to create a C<CD> object every time you insert an C<Artist> object.
ccbebdbc 1456You can accomplish this by overriding C<insert> on your objects:
086b93a2 1457
1458 sub insert {
ccbebdbc 1459 my ( $self, @args ) = @_;
1460 $self->next::method(@args);
086b93a2 1461 $self->cds->new({})->fill_from_artist($self)->insert;
1462 return $self;
1463 }
1464
1465where C<fill_from_artist> is a method you specify in C<CD> which sets
1466values in C<CD> based on the data in the C<Artist> object you pass in.
1467
d2f3e87b 1468=head2 Wrapping/overloading a column accessor
1469
1470B<Problem:>
1471
1472Say you have a table "Camera" and want to associate a description
1473with each camera. For most cameras, you'll be able to generate the description from
1474the other columns. However, in a few special cases you may want to associate a
1475custom description with a camera.
1476
1477B<Solution:>
1478
1479In your database schema, define a description field in the "Camera" table that
1480can contain text and null values.
1481
1482In DBIC, we'll overload the column accessor to provide a sane default if no
1483custom description is defined. The accessor will either return or generate the
1484description, depending on whether the field is null or not.
1485
1486First, in your "Camera" schema class, define the description field as follows:
1487
1488 __PACKAGE__->add_columns(description => { accessor => '_description' });
1489
1490Next, we'll define the accessor-wrapper subroutine:
1491
1492 sub description {
1493 my $self = shift;
1494
1495 # If there is an update to the column, we'll let the original accessor
1496 # deal with it.
1497 return $self->_description(@_) if @_;
1498
1499 # Fetch the column value.
1500 my $description = $self->_description;
1501
1502 # If there's something in the description field, then just return that.
1503 return $description if defined $description && length $descripton;
1504
1505 # Otherwise, generate a description.
1506 return $self->generate_description;
1507 }
1508
1509=head1 DEBUGGING AND PROFILING
1510
1511=head2 DBIx::Class objects with Data::Dumper
1def3451 1512
1513L<Data::Dumper> can be a very useful tool for debugging, but sometimes it can
1514be hard to find the pertinent data in all the data it can generate.
1515Specifically, if one naively tries to use it like so,
1516
1517 use Data::Dumper;
1518
1519 my $cd = $schema->resultset('CD')->find(1);
1520 print Dumper($cd);
1521
1522several pages worth of data from the CD object's schema and result source will
1523be dumped to the screen. Since usually one is only interested in a few column
1524values of the object, this is not very helpful.
1525
1526Luckily, it is possible to modify the data before L<Data::Dumper> outputs
1527it. Simply define a hook that L<Data::Dumper> will call on the object before
1528dumping it. For example,
1529
1530 package My::DB::CD;
1531
1532 sub _dumper_hook {
99fb1058 1533 $_[0] = bless {
1534 %{ $_[0] },
1def3451 1535 result_source => undef,
99fb1058 1536 }, ref($_[0]);
1def3451 1537 }
1538
1539 [...]
1540
1541 use Data::Dumper;
1542
22139027 1543 local $Data::Dumper::Freezer = '_dumper_hook';
1def3451 1544
1545 my $cd = $schema->resultset('CD')->find(1);
1546 print Dumper($cd);
1547 # dumps $cd without its ResultSource
1548
1549If the structure of your schema is such that there is a common base class for
1550all your table classes, simply put a method similar to C<_dumper_hook> in the
1551base class and set C<$Data::Dumper::Freezer> to its name and L<Data::Dumper>
1552will automagically clean up your data before printing it. See
1553L<Data::Dumper/EXAMPLES> for more information.
1554
4c248161 1555=head2 Profiling
1556
85f78622 1557When you enable L<DBIx::Class::Storage>'s debugging it prints the SQL
4c248161 1558executed as well as notifications of query completion and transaction
1559begin/commit. If you'd like to profile the SQL you can subclass the
1560L<DBIx::Class::Storage::Statistics> class and write your own profiling
1561mechanism:
1562
1563 package My::Profiler;
1564 use strict;
1565
1566 use base 'DBIx::Class::Storage::Statistics';
1567
1568 use Time::HiRes qw(time);
1569
1570 my $start;
1571
1572 sub query_start {
1573 my $self = shift();
1574 my $sql = shift();
1575 my $params = @_;
1576
70f39278 1577 $self->print("Executing $sql: ".join(', ', @params)."\n");
4c248161 1578 $start = time();
1579 }
1580
1581 sub query_end {
1582 my $self = shift();
1583 my $sql = shift();
1584 my @params = @_;
1585
70f39278 1586 my $elapsed = sprintf("%0.4f", time() - $start);
1587 $self->print("Execution took $elapsed seconds.\n");
4c248161 1588 $start = undef;
1589 }
1590
1591 1;
1592
1593You can then install that class as the debugging object:
1594
70f39278 1595 __PACKAGE__->storage->debugobj(new My::Profiler());
1596 __PACKAGE__->storage->debug(1);
4c248161 1597
1598A more complicated example might involve storing each execution of SQL in an
1599array:
1600
1601 sub query_end {
1602 my $self = shift();
1603 my $sql = shift();
1604 my @params = @_;
1605
1606 my $elapsed = time() - $start;
1607 push(@{ $calls{$sql} }, {
1608 params => \@params,
1609 elapsed => $elapsed
1610 });
1611 }
1612
1613You could then create average, high and low execution times for an SQL
1614statement and dig down to see if certain parameters cause aberrant behavior.
70f39278 1615You might want to check out L<DBIx::Class::QueryLog> as well.
4c248161 1616
7aaec96c 1617
40dbc108 1618=cut