Merge 'trunk' into 'DBIx-Class-C3'
[dbsrgits/DBIx-Class-Historic.git] / lib / DBIx / Class / Manual / Cookbook.pod
CommitLineData
3b44ccc6 1=head1 NAME
9c82c181 2
3b44ccc6 3DBIx::Class::Manual::Cookbook - Misc receipes
ee38fa40 4
5=over 4
6
7=item Input validation.
8
9=item Using joins
10
11=item Many-to-many relationships
12
13This is not as easy as it could be, but it's possible. Here's an example to
14illustrate:
15
dfeba824 16 # Set up inherited connection information
17 package MyApp::DBIC;
dfeba824 18 use base qw/DBIx::Class/;
ee38fa40 19
dfeba824 20 __PACKAGE__->load_components(qw/PK::Auto::SQLite Core DB/);
21 __PACKAGE__->connection(...);
ee38fa40 22
dfeba824 23 # Set up a class for the 'authors' table
24 package MyApp::DBIC::Author;
25 use base qw/MyApp::DBIC/;
ee38fa40 26
dfeba824 27 __PACKAGE__->table('authors');
28 __PACKAGE__->add_columns(qw/authID first_name last_name/);
29 __PACKAGE__->set_primary_key(qw/authID/);
ee38fa40 30
dfeba824 31 # Define relationship to the link table
32 __PACKAGE__->has_many('b2a' => 'MyApp::DBIC::Book2Author', 'authID');
ee38fa40 33
dfeba824 34 # Create the accessor for books from the ::Author class
35 sub books {
36 my ($self) = @_;
37 return MyApp::DBIC::Book->search(
8ab99068 38 { 'b2a.authID' => $self->authID }, # WHERE clause
39 { join => 'b2a' } # join condition (part of search attrs)
dfeba824 40 # 'b2a' refers to the relationship named earlier in the Author class.
41 # 'b2a.authID' refers to the authID column of the b2a relationship,
42 # which becomes accessible in the search by being joined.
8ab99068 43 );
dfeba824 44 }
ee38fa40 45
dfeba824 46 # define the link table class
47 package MyApp::DBIC::Book2Author;
dfeba824 48 use base qw/MyApp::DBIC/;
ee38fa40 49
dfeba824 50 __PACKAGE__->table('book2author');
51 __PACKAGE__->add_columns(qw/bookID authID/);
52 __PACKAGE__->set_primary_key(qw/bookID authID/);
ee38fa40 53
dfeba824 54 __PACKAGE__->belongs_to('authID' => 'MyApp::DBIC::Author');
55 __PACKAGE__->belongs_to('bookID' => 'MyApp::DBIC::Book');
ee38fa40 56
dfeba824 57 package MyApp::DBIC::Book;
dfeba824 58 use base qw/MyApp::DBIC/;
ee38fa40 59
dfeba824 60 __PACKAGE__->table('books');
61 __PACKAGE__->add_columns(qw/bookID title edition isbn publisher year/);
62 __PACKAGE__->set_primary_key(qw/bookID/);
63
64 __PACKAGE__->has_many('b2a' => 'MyApp::DBIC::Book2Author', 'bookID');
ee38fa40 65
dfeba824 66 sub authors {
67 my ($self) = @_;
68 return MyApp::DBIC::Author->search(
69 { 'b2a.bookID' => $self->bookID }, # WHERE clause
8ab99068 70 { join => 'b2a' }); # join condition (part of search attrs)
dfeba824 71 }
72
73 # So the above search returns an author record where the bookID field of the
74 # book2author table equals the bookID of the books (using the bookID
75 # relationship table
ee38fa40 76
77=item Advanced Exception handling
78
79=item Transactions
80
81=back