add_relationship, relationship_info, relationships moved to ResultSource
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Relationship.pm
1 package DBIx::Class::Relationship;
2
3 use strict;
4 use warnings;
5
6 use base qw/DBIx::Class/;
7
8 __PACKAGE__->load_own_components(qw/
9   Helpers
10   Accessor
11   CascadeActions
12   ProxyMethods
13   Base
14 /);
15
16 =head1 NAME 
17
18 DBIx::Class::Relationship - Inter-table relationships
19
20 =head1 SYNOPSIS
21
22 =head1 DESCRIPTION
23
24 This class handles relationships between the tables in your database
25 model. It allows you to set up relationships and perform joins on them.
26
27 Only the helper methods for setting up standard relationship types
28 are documented here. For the basic, lower-level methods, see
29 L<DBIx::Class::Relationship::Base>.
30
31 =head1 METHODS
32
33 All helper methods take the following arguments:
34
35   __PACKAGE__>$method_name('relname', 'Foreign::Class', $cond, $attrs);
36   
37 Both C<$cond> and C<$attrs> are optional. Pass C<undef> for C<$cond> if
38 you want to use the default value for it, but still want to set C<$attrs>.
39 See L<DBIx::Class::Relationship::Base> for a list of valid attributes.
40
41 =head2 belongs_to
42
43   # in a Bar class (where Foo has many Bars)
44   __PACKAGE__->belongs_to(foo => Foo);
45   my $f_obj = $obj->foo;
46   $obj->foo($new_f_obj);
47
48 Creates a relationship where the calling class stores the foreign class's 
49 primary key in one (or more) of its columns. If $cond is a column name
50 instead of a join condition hash, that is used as the name of the column
51 holding the foreign key. If $cond is not given, the relname is used as
52 the column name.
53
54 NOTE: If you are used to L<Class::DBI> relationships, this is the equivalent
55 of C<has_a>.
56
57 =head2 has_many
58
59   # in a Foo class (where Foo has many Bars)
60   __PACKAGE__->has_many(bar => Bar, 'foo');
61   my $f_resultset = $obj->foo;
62   my $f_resultset = $obj->foo({ name => { LIKE => '%macaroni%' }, { prefetch => [qw/bar/] });
63   my @f_obj = $obj->foo;
64
65   $obj->add_to_foo(\%col_data);
66
67 Creates a one-to-many relationship, where the corresponding elements of the
68 foreign class store the calling class's primary key in one (or more) of its
69 columns. You should pass the name of the column in the foreign class as the
70 $cond argument, or specify a complete join condition.
71
72 If you delete an object in a class with a C<has_many> relationship, all
73 related objects will be deleted as well. However, any database-level
74 cascade or restrict will take precedence.
75
76 =head2 might_have
77
78   __PACKAGE__->might_have(baz => Baz);
79   my $f_obj = $obj->baz; # to get the baz object
80
81 Creates an optional one-to-one relationship with a class, where the foreign class 
82 stores our primary key in one of its columns. Defaults to the primary key of the
83 foreign class unless $cond specifies a column or join condition.
84
85 If you update or delete an object in a class with a C<might_have> relationship, 
86 the related object will be updated or deleted as well. Any database-level update
87 or delete constraints will override this behavior.
88
89 =head2 has_one
90
91   __PACKAGE__->has_one(gorch => Gorch);
92   my $f_obj = $obj->gorch;
93
94 Creates a one-to-one relationship with another class. This is just like C<might_have>,
95 except the implication is that the other object is always present. The only different
96 between C<has_one> and C<might_have> is that C<has_one> uses an (ordinary) inner join,
97 whereas C<might_have> uses a left join.
98
99
100 =head2 many_to_many                                                             
101                                                                                 
102   __PACKAGE__->many_to_many( 'accessorname' => 'a_to_b', 'table_b' );           
103   my @f_objs = $obj_a->accessorname;                                            
104
105 =cut
106
107 1;
108
109 =head1 AUTHORS
110
111 Matt S. Trout <mst@shadowcatsystems.co.uk>
112
113 =head1 LICENSE
114
115 You may distribute this code under the same terms as Perl itself.
116
117 =cut
118