Fix broken sections links in POD
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class.pm
CommitLineData
ea2e61bf 1package DBIx::Class;
2
5d283305 3use strict;
4use warnings;
5
329d7385 6use MRO::Compat;
d38cd95c 7use mro 'c3';
329d7385 8
2527233b 9use DBIx::Class::Optional::Dependencies;
10
5d283305 11use vars qw($VERSION);
d38cd95c 12use base qw/DBIx::Class::Componentised Class::Accessor::Grouped/;
11736b4c 13use DBIx::Class::StartupCheck;
3e110410 14
ade0fe3b 15sub mk_classdata {
77d518d1 16 shift->mk_classaccessor(@_);
17}
18
19sub mk_classaccessor {
20 my $self = shift;
ade0fe3b 21 $self->mk_group_accessors('inherited', $_[0]);
77d518d1 22 $self->set_inherited(@_) if @_ > 1;
3e110410 23}
3c0068c1 24
7411204b 25sub component_base_class { 'DBIx::Class' }
227d4dee 26
95da6f35 27# Always remember to do all digits for the version even if they're 0
28# i.e. first release of 0.XX *must* be 0.XX000. This avoids fBSD ports
29# brain damage and presumably various other packaging systems too
f4591846 30$VERSION = '0.08127';
748ab0dc 31
033955f9 32$VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases
b8777a0d 33
f0750722 34sub MODIFY_CODE_ATTRIBUTES {
b5d2c57f 35 my ($class,$code,@attrs) = @_;
36 $class->mk_classdata('__attr_cache' => {})
37 unless $class->can('__attr_cache');
38 $class->__attr_cache->{$code} = [@attrs];
39 return ();
f0750722 40}
41
da95b45f 42sub _attr_cache {
b5d2c57f 43 my $self = shift;
44 my $cache = $self->can('__attr_cache') ? $self->__attr_cache : {};
9780718f 45
46 return {
47 %$cache,
48 %{ $self->maybe::next::method || {} },
20674fcd 49 };
da95b45f 50}
51
ea2e61bf 521;
34d52be2 53
75d07914 54=head1 NAME
34d52be2 55
7e4b2f59 56DBIx::Class - Extensible and flexible object <-> relational mapper.
34d52be2 57
3b1c2bbd 58=head1 GETTING HELP/SUPPORT
59
60The community can be found via:
61
a06e1181 62=over
3b1c2bbd 63
054235c6 64=item * Web Site: L<http://www.dbix-class.org/>
65
c6fdaf2a 66=item * IRC: irc.perl.org#dbix-class
67
68=for html
e3194e31 69<a href="http://chat.mibbit.com/#dbix-class@irc.perl.org">(click for instant chatroom login)</a>
3b1c2bbd 70
a06e1181 71=item * Mailing list: L<http://lists.scsys.co.uk/mailman/listinfo/dbix-class>
3b1c2bbd 72
a06e1181 73=item * RT Bug Tracker: L<https://rt.cpan.org/Dist/Display.html?Queue=DBIx-Class>
74
aeb669b8 75=item * gitweb: L<http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits/DBIx-Class.git>
a06e1181 76
aeb669b8 77=item * git: L<git://git.shadowcat.co.uk/dbsrgits/DBIx-Class.git>
a06e1181 78
43517a60 79=item * twitter L<http://www.twitter.com/dbix_class>
80
a06e1181 81=back
3b1c2bbd 82
34d52be2 83=head1 SYNOPSIS
84
bd077b47 85Create a schema class called MyDB/Schema.pm:
34d52be2 86
bd077b47 87 package MyDB::Schema;
a0638a7b 88 use base qw/DBIx::Class::Schema/;
34d52be2 89
f0bb26f3 90 __PACKAGE__->load_namespaces();
daec44b8 91
a0638a7b 92 1;
daec44b8 93
30e1753a 94Create a result class to represent artists, who have many CDs, in
f0bb26f3 95MyDB/Schema/Result/Artist.pm:
daec44b8 96
30e1753a 97See L<DBIx::Class::ResultSource> for docs on defining result classes.
98
f0bb26f3 99 package MyDB::Schema::Result::Artist;
d88ecca6 100 use base qw/DBIx::Class::Core/;
daec44b8 101
a0638a7b 102 __PACKAGE__->table('artist');
103 __PACKAGE__->add_columns(qw/ artistid name /);
104 __PACKAGE__->set_primary_key('artistid');
f0bb26f3 105 __PACKAGE__->has_many(cds => 'MyDB::Schema::Result::CD');
daec44b8 106
a0638a7b 107 1;
daec44b8 108
30e1753a 109A result class to represent a CD, which belongs to an artist, in
f0bb26f3 110MyDB/Schema/Result/CD.pm:
39fe0e65 111
f0bb26f3 112 package MyDB::Schema::Result::CD;
d88ecca6 113 use base qw/DBIx::Class::Core/;
39fe0e65 114
d88ecca6 115 __PACKAGE__->load_components(qw/InflateColumn::DateTime/);
a0638a7b 116 __PACKAGE__->table('cd');
bd077b47 117 __PACKAGE__->add_columns(qw/ cdid artistid title year /);
a0638a7b 118 __PACKAGE__->set_primary_key('cdid');
7e3df949 119 __PACKAGE__->belongs_to(artist => 'MyDB::Schema::Result::Artist', 'artistid');
39fe0e65 120
a0638a7b 121 1;
39fe0e65 122
a0638a7b 123Then you can use these classes in your application's code:
39fe0e65 124
a0638a7b 125 # Connect to your database.
bd077b47 126 use MyDB::Schema;
127 my $schema = MyDB::Schema->connect($dbi_dsn, $user, $pass, \%dbi_params);
a0638a7b 128
129 # Query for all artists and put them in an array,
130 # or retrieve them as a result set object.
30e1753a 131 # $schema->resultset returns a DBIx::Class::ResultSet
2053ab2a 132 my @all_artists = $schema->resultset('Artist')->all;
133 my $all_artists_rs = $schema->resultset('Artist');
126042ee 134
30e1753a 135 # Output all artists names
4e8ffded 136 # $artist here is a DBIx::Class::Row, which has accessors
16ccb4fe 137 # for all its columns. Rows are also subclasses of your Result class.
85067746 138 foreach $artist (@all_artists) {
30e1753a 139 print $artist->name, "\n";
140 }
141
a0638a7b 142 # Create a result set to search for artists.
86beca1d 143 # This does not query the DB.
2053ab2a 144 my $johns_rs = $schema->resultset('Artist')->search(
6576ef54 145 # Build your WHERE using an SQL::Abstract structure:
2053ab2a 146 { name => { like => 'John%' } }
a0638a7b 147 );
39fe0e65 148
2053ab2a 149 # Execute a joined query to get the cds.
a0638a7b 150 my @all_john_cds = $johns_rs->search_related('cds')->all;
448c8424 151
f0bb26f3 152 # Fetch the next available row.
a0638a7b 153 my $first_john = $johns_rs->next;
448c8424 154
2053ab2a 155 # Specify ORDER BY on the query.
a0638a7b 156 my $first_john_cds_by_title_rs = $first_john->cds(
157 undef,
158 { order_by => 'title' }
159 );
448c8424 160
bd077b47 161 # Create a result set that will fetch the artist data
2053ab2a 162 # at the same time as it fetches CDs, using only one query.
884559b1 163 my $millennium_cds_rs = $schema->resultset('CD')->search(
a0638a7b 164 { year => 2000 },
165 { prefetch => 'artist' }
166 );
448c8424 167
880a1a0c 168 my $cd = $millennium_cds_rs->next; # SELECT ... FROM cds JOIN artists ...
bd077b47 169 my $cd_artist_name = $cd->artist->name; # Already has the data so no 2nd query
076652e8 170
264f1571 171 # new() makes a DBIx::Class::Row object but doesnt insert it into the DB.
172 # create() is the same as new() then insert().
884559b1 173 my $new_cd = $schema->resultset('CD')->new({ title => 'Spoon' });
f183eccd 174 $new_cd->artist($cd->artist);
f183eccd 175 $new_cd->insert; # Auto-increment primary key filled in after INSERT
f183eccd 176 $new_cd->title('Fork');
177
884559b1 178 $schema->txn_do(sub { $new_cd->update }); # Runs the update in a transaction
f183eccd 179
bd077b47 180 # change the year of all the millennium CDs at once
181 $millennium_cds_rs->update({ year => 2002 });
f183eccd 182
183=head1 DESCRIPTION
184
185This is an SQL to OO mapper with an object API inspired by L<Class::DBI>
bd077b47 186(with a compatibility layer as a springboard for porting) and a resultset API
f183eccd 187that allows abstract encapsulation of database operations. It aims to make
188representing queries in your code as perl-ish as possible while still
a0638a7b 189providing access to as many of the capabilities of the database as possible,
f183eccd 190including retrieving related records from multiple tables in a single query,
bd077b47 191JOIN, LEFT JOIN, COUNT, DISTINCT, GROUP BY, ORDER BY and HAVING support.
f183eccd 192
193DBIx::Class can handle multi-column primary and foreign keys, complex
194queries and database-level paging, and does its best to only query the
75d07914 195database in order to return something you've directly asked for. If a
196resultset is used as an iterator it only fetches rows off the statement
197handle as requested in order to minimise memory usage. It has auto-increment
2053ab2a 198support for SQLite, MySQL, PostgreSQL, Oracle, SQL Server and DB2 and is
199known to be used in production on at least the first four, and is fork-
ec6415a9 200and thread-safe out of the box (although
201L<your DBD may not be|DBI/Threads_and_Thread_Safety>).
f183eccd 202
dfccde48 203This project is still under rapid development, so large new features may be
204marked EXPERIMENTAL - such APIs are still usable but may have edge bugs.
205Failing test cases are *always* welcome and point releases are put out rapidly
206as bugs are found and fixed.
207
208We do our best to maintain full backwards compatibility for published
209APIs, since DBIx::Class is used in production in many organisations,
210and even backwards incompatible changes to non-published APIs will be fixed
211if they're reported and doing so doesn't cost the codebase anything.
212
264f1571 213The test suite is quite substantial, and several developer releases
214are generally made to CPAN before the branch for the next release is
215merged back to trunk for a major release.
f183eccd 216
f183eccd 217=head1 WHERE TO GO NEXT
218
2ca930b4 219L<DBIx::Class::Manual::DocMap> lists each task you might want help on, and
220the modules where you will find documentation.
076652e8 221
3942ab4d 222=head1 AUTHOR
34d52be2 223
266bdcc3 224mst: Matt S. Trout <mst@shadowcatsystems.co.uk>
34d52be2 225
dfccde48 226(I mostly consider myself "project founder" these days but the AUTHOR heading
227is traditional :)
228
3942ab4d 229=head1 CONTRIBUTORS
230
907ed671 231abraxxa: Alexander Hartmaier <abraxxa@cpan.org>
84e3c114 232
6d84db2c 233aherzog: Adam Herzog <adam@herzogdesigns.com>
234
daeb1865 235Alexander Keusch <cpan@keusch.at>
236
630ba6e5 237alnewkirk: Al Newkirk <we@ana.im>
238
6ebf5cbb 239amiri: Amiri Barksdale <amiri@metalabel.com>
240
b703fec7 241amoore: Andrew Moore <amoore@cpan.org>
242
266bdcc3 243andyg: Andy Grundman <andy@hybridized.org>
3942ab4d 244
266bdcc3 245ank: Andres Kievsky
3942ab4d 246
59ac6523 247arc: Aaron Crane <arc@cpan.org>
248
624764ae 249arcanez: Justin Hunter <justin.d.hunter@gmail.com>
250
ce4c07df 251ash: Ash Berlin <ash@cpan.org>
252
3d5bd2af 253bert: Norbert Csongradi <bert@cpan.org>
254
967a4c40 255blblack: Brandon L. Black <blblack@gmail.com>
3942ab4d 256
62eb8fe8 257bluefeet: Aran Deltac <bluefeet@cpan.org>
258
d6170b26 259bphillips: Brian Phillips <bphillips@cpan.org>
260
f856fe01 261boghead: Bryan Beeley <cpan@beeley.org>
262
bcb8f3ed 263bricas: Brian Cassidy <bricas@cpan.org>
264
3d7e3e05 265brunov: Bruno Vecchi <vecchi.b@gmail.com>
266
281719d2 267caelum: Rafael Kitover <rkitover@cpan.org>
268
f5f2af8f 269caldrin: Maik Hentsche <maik.hentsche@amd.com>
270
d3b0e369 271castaway: Jess Robinson
3942ab4d 272
266bdcc3 273claco: Christopher H. Laco
ccb9c9b1 274
266bdcc3 275clkao: CL Kao
3942ab4d 276
e21dfd6a 277da5id: David Jack Olrik <djo@cpan.org>
18360aed 278
13de943d 279debolaz: Anders Nor Berle <berle@cpan.org>
280
d1f542db 281dew: Dan Thomas <dan@godders.org>
282
266bdcc3 283dkubb: Dan Kubb <dan.kubb-cpan@onautopilot.com>
ccb9c9b1 284
9382ad07 285dnm: Justin Wheeler <jwheeler@datademons.com>
286
0818c9a7 287dpetrov: Dimitar Petrov <mitakaa@gmail.com>
288
266bdcc3 289dwc: Daniel Westermann-Clark <danieltwc@cpan.org>
4685e006 290
5cffe785 291dyfrgi: Michael Leuchtenburg <michael@slashhome.org>
8fe164b9 292
0ffada27 293freetime: Bill Moseley <moseley@hank.org>
294
ade0fe3b 295frew: Arthur Axel "fREW" Schmidt <frioux@gmail.com>
296
b4987ed0 297goraxe: Gordon Irving <goraxe@cpan.org>
298
d3b0e369 299gphat: Cory G Watson <gphat@cpan.org>
ad3d2d7c 300
e758ffe6 301groditi: Guillermo Roditi <groditi@cpan.org>
302
6dad89f5 303Haarg: Graham Knop <haarg@haarg.org>
304
157ce0cf 305hobbs: Andrew Rodland <arodland@cpan.org>
306
5d779578 307ilmari: Dagfinn Ilmari MannsE<aring>ker <ilmari@ilmari.org>
308
0ac0af6c 309initself: Mike Baas <mike@initselftech.com>
310
bee21976 311jasonmay: Jason May <jason.a.may@gmail.com>
312
d3b0e369 313jesper: Jesper Krogh
5fb0c64c 314
4a743a00 315jgoulah: John Goulah <jgoulah@cpan.org>
316
102a2984 317jguenther: Justin Guenther <jguenther@cpan.org>
d7c4c15c 318
a14a46e2 319jhannah: Jay Hannah <jay@jays.net>
320
8b93a938 321jnapiorkowski: John Napiorkowski <jjn1056@yahoo.com>
322
11736b4c 323jon: Jon Schutz <jjschutz@cpan.org>
324
1aec4bac 325jshirley: J. Shirley <jshirley@gmail.com>
326
41519379 327kaare: Kaare Rasmussen
328
d3b0e369 329konobi: Scott McWhirter
535fc2ee 330
4e0a89e4 331littlesavage: Alexey Illarionov <littlesavage@orionet.ru>
332
4367679a 333lukes: Luke Saunders <luke.saunders@gmail.com>
334
709ea492 335marcus: Marcus Ramberg <mramberg@cpan.org>
336
114780ee 337mattlaw: Matt Lawrence
338
58755bba 339michaelr: Michael Reddick <michael.reddick@gmail.com>
340
77e7e47d 341ned: Neil de Carteret
342
266bdcc3 343nigel: Nigel Metheringham <nigelm@cpan.org>
6565b410 344
d3b0e369 345ningu: David Kamholz <dkamholz@cpan.org>
346
66cf3a84 347Nniuq: Ron "Quinn" Straight" <quinnfazigu@gmail.org>
348
20b4c148 349norbi: Norbert Buchmuller <norbi@nix.hu>
350
48580715 351nuba: Nuba Princigalli <nuba@cpan.org>
352
d3b0e369 353Numa: Dan Sully <daniel@cpan.org>
354
dc571b76 355ovid: Curtis "Ovid" Poe <ovid@cpan.org>
356
bf356c54 357oyse: Øystein Torget <oystein.torget@dnv.com>
358
266bdcc3 359paulm: Paul Makepeace
4763f4b7 360
d3b0e369 361penguin: K J Cheetham
362
8cfef6f5 363perigrin: Chris Prather <chris@prather.org>
364
14899528 365peter: Peter Collingbourne <peter@pcc.me.uk>
caac1708 366
266bdcc3 367phaylon: Robert Sedlacek <phaylon@dunkelheit.at>
a53b95f1 368
56fadd8f 369plu: Johannes Plunien <plu@cpan.org>
370
0c1a4a15 371Possum: Daniel LeWarne <possum@cpan.org>
372
d3b0e369 373quicksilver: Jules Bean
022e0893 374
4ed01b34 375rafl: Florian Ragwitz <rafl@debian.org>
376
0c1a4a15 377rainboxx: Matthias Dietrich <perl@rb.ly>
378
868a7b26 379rbo: Robert Bohne <rbo@cpan.org>
380
7ff0dace 381rbuels: Robert Buels <rmb32@cornell.edu>
382
0da8b7da 383rdj: Ryan D Johnson <ryan@innerfence.com>
384
66b1e361 385ribasushi: Peter Rabbitson <ribasushi@cpan.org>
d76e282a 386
b487918c 387rjbs: Ricardo Signes <rjbs@cpan.org>
388
6ffb5be5 389robkinyon: Rob Kinyon <rkinyon@cpan.org>
390
e4c9f3f0 391Roman: Roman Filippov <romanf@cpan.org>
392
dc81dba3 393Sadrak: Felix Antonius Wilhelm Ostmann <sadrak@cpan.org>
394
d3b0e369 395sc_: Just Another Perl Hacker
ba606e58 396
266bdcc3 397scotty: Scotty Allen <scotty@scottyallen.com>
181a28f4 398
1c133e22 399semifor: Marc Mims <marc@questright.com>
400
20b4c148 401solomon: Jared Johnson <jaredj@nmgi.com>
402
88f937fb 403spb: Stephen Bennett <stephen@freenode.net>
404
59187a3b 405Squeeks <squeek@cpan.org>
406
637ca936 407sszabo: Stephan Szabo <sszabo@bigpanda.com>
408
a9e8284f 409talexb: Alex Beamish <talexb@gmail.com>
410
f92a9d79 411tamias: Ronald J Kimball <rkimball@pangeamedia.com>
412
386c2272 413teejay : Aaron Trevena <teejay@cpan.org>
414
84e3c114 415Todd Lipcon
e063fe2c 416
6eb6264e 417Tom Hukins
418
2e4b6d78 419tonvoon: Ton Voon <tonvoon@cpan.org>
420
d15e3fc5 421triode: Pete Gamache <gamache@cpan.org>
422
d3b0e369 423typester: Daisuke Murase <typester@cpan.org>
c0e7b4e5 424
4740bdb7 425victori: Victor Igumnov <victori@cpan.org>
426
d3b0e369 427wdh: Will Hawes
4c248161 428
00c03ced 429willert: Sebastian Willert <willert@cpan.org>
430
66d2a14e 431wreis: Wallace Reis <wreis@cpan.org>
432
d52d4d6e 433yrlnry: Mark Jason Dominus <mjd@plover.com>
434
d3b0e369 435zamolxes: Bogdan Lucaciu <bogdan@wiz.ro>
78060df8 436
b38e10bd 437=head1 COPYRIGHT
438
48580715 439Copyright (c) 2005 - 2010 the DBIx::Class L</AUTHOR> and L</CONTRIBUTORS>
b38e10bd 440as listed above.
441
96154ef7 442=head1 LICENSE
443
444This library is free software and may be distributed under the same terms
445as perl itself.
446
34d52be2 447=cut