0934c55b379d3c60a80e32b136f80a99612b2515
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class.pm
1 package DBIx::Class;
2
3 use strict;
4 use warnings;
5
6 use vars qw($VERSION);
7 use base qw/DBIx::Class::Componentised Class::Accessor::Grouped/;
8
9
10 sub mk_classdata { 
11   shift->mk_classaccessor(@_);
12 }
13
14 sub mk_classaccessor {
15   my $self = shift;
16   $self->mk_group_accessors('inherited', $_[0]); 
17   $self->set_inherited(@_) if @_ > 1;
18 }
19
20 sub component_base_class { 'DBIx::Class' }
21
22 # Always remember to do all digits for the version even if they're 0
23 # i.e. first release of 0.XX *must* be 0.XX000. This avoids fBSD ports
24 # brain damage and presumably various other packaging systems too
25
26 $VERSION = '0.08005';
27
28 sub MODIFY_CODE_ATTRIBUTES {
29   my ($class,$code,@attrs) = @_;
30   $class->mk_classdata('__attr_cache' => {})
31     unless $class->can('__attr_cache');
32   $class->__attr_cache->{$code} = [@attrs];
33   return ();
34 }
35
36 sub _attr_cache {
37   my $self = shift;
38   my $cache = $self->can('__attr_cache') ? $self->__attr_cache : {};
39   my $rest = eval { $self->next::method };
40   return $@ ? $cache : { %$cache, %$rest };
41 }
42
43 1;
44
45 =head1 NAME
46
47 DBIx::Class - Extensible and flexible object <-> relational mapper.
48
49 =head1 SYNOPSIS
50
51 Create a schema class called DB/Main.pm:
52
53   package DB::Main;
54   use base qw/DBIx::Class::Schema/;
55
56   __PACKAGE__->load_classes();
57
58   1;
59
60 Create a table class to represent artists, who have many CDs, in DB/Main/Artist.pm:
61
62   package DB::Main::Artist;
63   use base qw/DBIx::Class/;
64
65   __PACKAGE__->load_components(qw/PK::Auto Core/);
66   __PACKAGE__->table('artist');
67   __PACKAGE__->add_columns(qw/ artistid name /);
68   __PACKAGE__->set_primary_key('artistid');
69   __PACKAGE__->has_many(cds => 'DB::Main::CD');
70
71   1;
72
73 A table class to represent a CD, which belongs to an artist, in DB/Main/CD.pm:
74
75   package DB::Main::CD;
76   use base qw/DBIx::Class/;
77
78   __PACKAGE__->load_components(qw/PK::Auto Core/);
79   __PACKAGE__->table('cd');
80   __PACKAGE__->add_columns(qw/ cdid artist title year /);
81   __PACKAGE__->set_primary_key('cdid');
82   __PACKAGE__->belongs_to(artist => 'DB::Main::Artist');
83
84   1;
85
86 Then you can use these classes in your application's code:
87
88   # Connect to your database.
89   use DB::Main;
90   my $schema = DB::Main->connect($dbi_dsn, $user, $pass, \%dbi_params);
91
92   # Query for all artists and put them in an array,
93   # or retrieve them as a result set object.
94   my @all_artists = $schema->resultset('Artist')->all;
95   my $all_artists_rs = $schema->resultset('Artist');
96
97   # Create a result set to search for artists.
98   # This does not query the DB.
99   my $johns_rs = $schema->resultset('Artist')->search(
100     # Build your WHERE using an SQL::Abstract structure:
101     { name => { like => 'John%' } }
102   );
103
104   # Execute a joined query to get the cds.
105   my @all_john_cds = $johns_rs->search_related('cds')->all;
106
107   # Fetch only the next row.
108   my $first_john = $johns_rs->next;
109
110   # Specify ORDER BY on the query.
111   my $first_john_cds_by_title_rs = $first_john->cds(
112     undef,
113     { order_by => 'title' }
114   );
115
116   # Create a result set that will fetch the artist relationship
117   # at the same time as it fetches CDs, using only one query.
118   my $millennium_cds_rs = $schema->resultset('CD')->search(
119     { year => 2000 },
120     { prefetch => 'artist' }
121   );
122
123   my $cd = $millennium_cds_rs->next; # SELECT ... FROM cds JOIN artists ...
124   my $cd_artist_name = $cd->artist->name; # Already has the data so no query
125
126   my $new_cd = $schema->resultset('CD')->new({ title => 'Spoon' });
127   $new_cd->artist($cd->artist);
128   $new_cd->insert; # Auto-increment primary key filled in after INSERT
129   $new_cd->title('Fork');
130
131   $schema->txn_do(sub { $new_cd->update }); # Runs the update in a transaction
132
133   $millennium_cds_rs->update({ year => 2002 }); # Single-query bulk update
134
135 =head1 DESCRIPTION
136
137 This is an SQL to OO mapper with an object API inspired by L<Class::DBI>
138 (and a compatibility layer as a springboard for porting) and a resultset API
139 that allows abstract encapsulation of database operations. It aims to make
140 representing queries in your code as perl-ish as possible while still
141 providing access to as many of the capabilities of the database as possible,
142 including retrieving related records from multiple tables in a single query,
143 JOIN, LEFT JOIN, COUNT, DISTINCT, GROUP BY and HAVING support.
144
145 DBIx::Class can handle multi-column primary and foreign keys, complex
146 queries and database-level paging, and does its best to only query the
147 database in order to return something you've directly asked for. If a
148 resultset is used as an iterator it only fetches rows off the statement
149 handle as requested in order to minimise memory usage. It has auto-increment
150 support for SQLite, MySQL, PostgreSQL, Oracle, SQL Server and DB2 and is
151 known to be used in production on at least the first four, and is fork-
152 and thread-safe out of the box (although your DBD may not be).
153
154 This project is still under rapid development, so large new features may be
155 marked EXPERIMENTAL - such APIs are still usable but may have edge bugs.
156 Failing test cases are *always* welcome and point releases are put out rapidly
157 as bugs are found and fixed.
158
159 We do our best to maintain full backwards compatibility for published
160 APIs, since DBIx::Class is used in production in many organisations,
161 and even backwards incompatible changes to non-published APIs will be fixed
162 if they're reported and doing so doesn't cost the codebase anything.
163
164 The test suite is quite substantial, and several developer releases are
165 generally made to CPAN before the -current branch is merged back to trunk for
166 a major release.
167
168 The community can be found via:
169
170   Mailing list: http://lists.scsys.co.uk/mailman/listinfo/dbix-class/
171
172   SVN: http://dev.catalyst.perl.org/repos/bast/DBIx-Class/
173
174   SVNWeb: http://dev.catalyst.perl.org/svnweb/bast/browse/DBIx-Class/
175
176   IRC: irc.perl.org#dbix-class
177
178 =head1 WHERE TO GO NEXT
179
180 L<DBIx::Class::Manual::DocMap> lists each task you might want help on, and
181 the modules where you will find documentation.
182
183 =head1 AUTHOR
184
185 mst: Matt S. Trout <mst@shadowcatsystems.co.uk>
186
187 (I mostly consider myself "project founder" these days but the AUTHOR heading
188 is traditional :)
189
190 =head1 CONTRIBUTORS
191
192 abraxxa: Alexander Hartmaier <alex_hartmaier@hotmail.com>
193
194 aherzog: Adam Herzog <adam@herzogdesigns.com>
195
196 andyg: Andy Grundman <andy@hybridized.org>
197
198 ank: Andres Kievsky
199
200 ash: Ash Berlin <ash@cpan.org>
201
202 blblack: Brandon L. Black <blblack@gmail.com>
203
204 bluefeet: Aran Deltac <bluefeet@cpan.org>
205
206 captainL: Luke Saunders <luke.saunders@gmail.com>
207
208 castaway: Jess Robinson
209
210 claco: Christopher H. Laco
211
212 clkao: CL Kao
213
214 da5id: David Jack Olrik <djo@cpan.org>
215
216 dkubb: Dan Kubb <dan.kubb-cpan@onautopilot.com>
217
218 dnm: Justin Wheeler <jwheeler@datademons.com>
219
220 draven: Marcus Ramberg <mramberg@cpan.org>
221
222 dwc: Daniel Westermann-Clark <danieltwc@cpan.org>
223
224 dyfrgi: Michael Leuchtenburg <michael@slashhome.org>
225
226 gphat: Cory G Watson <gphat@cpan.org>
227
228 jesper: Jesper Krogh
229
230 jguenther: Justin Guenther <jguenther@cpan.org>
231
232 jnapiorkowski: John Napiorkowski <jjn1056@yahoo.com>
233
234 jshirley: J. Shirley <jshirley@gmail.com>
235
236 konobi: Scott McWhirter
237
238 LTJake: Brian Cassidy <bricas@cpan.org>
239
240 mattlaw: Matt Lawrence
241
242 ned: Neil de Carteret
243
244 nigel: Nigel Metheringham <nigelm@cpan.org>
245
246 ningu: David Kamholz <dkamholz@cpan.org>
247
248 Numa: Dan Sully <daniel@cpan.org>
249
250 paulm: Paul Makepeace
251
252 penguin: K J Cheetham
253
254 phaylon: Robert Sedlacek <phaylon@dunkelheit.at>
255
256 quicksilver: Jules Bean
257
258 sc_: Just Another Perl Hacker
259
260 scotty: Scotty Allen <scotty@scottyallen.com>
261
262 sszabo: Stephan Szabo <sszabo@bigpanda.com>
263
264 Todd Lipcon
265
266 typester: Daisuke Murase <typester@cpan.org>
267
268 victori: Victor Igumnov <victori@cpan.org>
269
270 wdh: Will Hawes
271
272 willert: Sebastian Willert <willert@cpan.org>
273
274 zamolxes: Bogdan Lucaciu <bogdan@wiz.ro>
275
276 =head1 LICENSE
277
278 You may distribute this code under the same terms as Perl itself.
279
280 =cut