Re-attribute a substantial chunk of docs, due to lost original author
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class.pm
CommitLineData
ea2e61bf 1package DBIx::Class;
2
5d283305 3use strict;
4use warnings;
5
f9cc85ce 6our $VERSION;
7# Always remember to do all digits for the version even if they're 0
8# i.e. first release of 0.XX *must* be 0.XX000. This avoids fBSD ports
9# brain damage and presumably various other packaging systems too
10
11# $VERSION declaration must stay up here, ahead of any other package
12# declarations, as to not confuse various modules attempting to determine
13# this ones version, whether that be s.c.o. or Module::Metadata, etc
cab1f708 14$VERSION = '0.082700_06';
f9cc85ce 15
16$VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases
17
37873f78 18use DBIx::Class::_Util;
d38cd95c 19use mro 'c3';
329d7385 20
2527233b 21use DBIx::Class::Optional::Dependencies;
22
db29433c 23use base qw/DBIx::Class::Componentised DBIx::Class::AccessorGroup/;
11736b4c 24use DBIx::Class::StartupCheck;
f9080e45 25use DBIx::Class::Exception;
3e110410 26
70c28808 27__PACKAGE__->mk_group_accessors(inherited => '_skip_namespace_frames');
9345b14c 28__PACKAGE__->_skip_namespace_frames('^DBIx::Class|^SQL::Abstract|^Try::Tiny|^Class::Accessor::Grouped|^Context::Preserve');
70c28808 29
ade0fe3b 30sub mk_classdata {
77d518d1 31 shift->mk_classaccessor(@_);
32}
33
34sub mk_classaccessor {
35 my $self = shift;
ade0fe3b 36 $self->mk_group_accessors('inherited', $_[0]);
77d518d1 37 $self->set_inherited(@_) if @_ > 1;
3e110410 38}
3c0068c1 39
7411204b 40sub component_base_class { 'DBIx::Class' }
227d4dee 41
f0750722 42sub MODIFY_CODE_ATTRIBUTES {
b5d2c57f 43 my ($class,$code,@attrs) = @_;
44 $class->mk_classdata('__attr_cache' => {})
45 unless $class->can('__attr_cache');
46 $class->__attr_cache->{$code} = [@attrs];
47 return ();
f0750722 48}
49
da95b45f 50sub _attr_cache {
b5d2c57f 51 my $self = shift;
52 my $cache = $self->can('__attr_cache') ? $self->__attr_cache : {};
9780718f 53
54 return {
55 %$cache,
56 %{ $self->maybe::next::method || {} },
20674fcd 57 };
da95b45f 58}
59
d095c62d 60# *DO NOT* change this URL nor the identically named =head1 below
61# it is linked throughout the ecosystem
62sub DBIx::Class::_ENV_::HELP_URL () {
63 'http://p3rl.org/DBIx::Class#GETTING_HELP/SUPPORT'
64}
65
ea2e61bf 661;
34d52be2 67
d095c62d 68__END__
69
97ad6fb8 70=encoding UTF-8
71
75d07914 72=head1 NAME
34d52be2 73
7e4b2f59 74DBIx::Class - Extensible and flexible object <-> relational mapper.
34d52be2 75
06752a03 76=head1 WHERE TO START READING
3b1c2bbd 77
06752a03 78See L<DBIx::Class::Manual::DocMap> for an overview of the exhaustive documentation.
79To get the most out of DBIx::Class with the least confusion it is strongly
80recommended to read (at the very least) the
81L<Manuals|DBIx::Class::Manual::DocMap/Manuals> in the order presented there.
82
32250d01 83=cut
84
32250d01 85=head1 GETTING HELP/SUPPORT
06752a03 86
32250d01 87Due to the sheer size of its problem domain, DBIx::Class is a relatively
06752a03 88complex framework. After you start using DBIx::Class questions will inevitably
89arise. If you are stuck with a problem or have doubts about a particular
32250d01 90approach do not hesitate to contact us via any of the following options (the
91list is sorted by "fastest response time"):
3b1c2bbd 92
a06e1181 93=over
3b1c2bbd 94
c6fdaf2a 95=item * IRC: irc.perl.org#dbix-class
96
97=for html
e1ddfc8a 98<a href="https://chat.mibbit.com/#dbix-class@irc.perl.org">(click for instant chatroom login)</a>
3b1c2bbd 99
a06e1181 100=item * Mailing list: L<http://lists.scsys.co.uk/mailman/listinfo/dbix-class>
3b1c2bbd 101
e1ddfc8a 102=item * RT Bug Tracker: L<https://rt.cpan.org/NoAuth/Bugs.html?Dist=DBIx-Class>
86a23587 103
e1ddfc8a 104=item * Twitter: L<https://www.twitter.com/dbix_class>
86a23587 105
86a23587 106=item * Web Site: L<http://www.dbix-class.org/>
a06e1181 107
86a23587 108=back
109
34d52be2 110=head1 SYNOPSIS
111
113e8d16 112For the very impatient: L<DBIx::Class::Manual::QuickStart>
113
114This code in the next step can be generated automatically from an existing
115database, see L<dbicdump> from the distribution C<DBIx-Class-Schema-Loader>.
116
5b56d1ac 117=head2 Schema classes preparation
118
53aa53f3 119Create a schema class called F<MyApp/Schema.pm>:
34d52be2 120
03460bef 121 package MyApp::Schema;
a0638a7b 122 use base qw/DBIx::Class::Schema/;
34d52be2 123
f0bb26f3 124 __PACKAGE__->load_namespaces();
daec44b8 125
a0638a7b 126 1;
daec44b8 127
30e1753a 128Create a result class to represent artists, who have many CDs, in
53aa53f3 129F<MyApp/Schema/Result/Artist.pm>:
daec44b8 130
30e1753a 131See L<DBIx::Class::ResultSource> for docs on defining result classes.
132
03460bef 133 package MyApp::Schema::Result::Artist;
d88ecca6 134 use base qw/DBIx::Class::Core/;
daec44b8 135
a0638a7b 136 __PACKAGE__->table('artist');
137 __PACKAGE__->add_columns(qw/ artistid name /);
138 __PACKAGE__->set_primary_key('artistid');
326dacbf 139 __PACKAGE__->has_many(cds => 'MyApp::Schema::Result::CD', 'artistid');
daec44b8 140
a0638a7b 141 1;
daec44b8 142
30e1753a 143A result class to represent a CD, which belongs to an artist, in
53aa53f3 144F<MyApp/Schema/Result/CD.pm>:
39fe0e65 145
03460bef 146 package MyApp::Schema::Result::CD;
d88ecca6 147 use base qw/DBIx::Class::Core/;
39fe0e65 148
d88ecca6 149 __PACKAGE__->load_components(qw/InflateColumn::DateTime/);
a0638a7b 150 __PACKAGE__->table('cd');
bd077b47 151 __PACKAGE__->add_columns(qw/ cdid artistid title year /);
a0638a7b 152 __PACKAGE__->set_primary_key('cdid');
03460bef 153 __PACKAGE__->belongs_to(artist => 'MyApp::Schema::Result::Artist', 'artistid');
39fe0e65 154
a0638a7b 155 1;
39fe0e65 156
5b56d1ac 157=head2 API usage
158
a0638a7b 159Then you can use these classes in your application's code:
39fe0e65 160
a0638a7b 161 # Connect to your database.
03460bef 162 use MyApp::Schema;
163 my $schema = MyApp::Schema->connect($dbi_dsn, $user, $pass, \%dbi_params);
a0638a7b 164
165 # Query for all artists and put them in an array,
166 # or retrieve them as a result set object.
30e1753a 167 # $schema->resultset returns a DBIx::Class::ResultSet
2053ab2a 168 my @all_artists = $schema->resultset('Artist')->all;
169 my $all_artists_rs = $schema->resultset('Artist');
126042ee 170
30e1753a 171 # Output all artists names
4e8ffded 172 # $artist here is a DBIx::Class::Row, which has accessors
16ccb4fe 173 # for all its columns. Rows are also subclasses of your Result class.
85067746 174 foreach $artist (@all_artists) {
30e1753a 175 print $artist->name, "\n";
176 }
177
a0638a7b 178 # Create a result set to search for artists.
86beca1d 179 # This does not query the DB.
2053ab2a 180 my $johns_rs = $schema->resultset('Artist')->search(
6576ef54 181 # Build your WHERE using an SQL::Abstract structure:
2053ab2a 182 { name => { like => 'John%' } }
a0638a7b 183 );
39fe0e65 184
2053ab2a 185 # Execute a joined query to get the cds.
a0638a7b 186 my @all_john_cds = $johns_rs->search_related('cds')->all;
448c8424 187
f0bb26f3 188 # Fetch the next available row.
a0638a7b 189 my $first_john = $johns_rs->next;
448c8424 190
2053ab2a 191 # Specify ORDER BY on the query.
a0638a7b 192 my $first_john_cds_by_title_rs = $first_john->cds(
193 undef,
194 { order_by => 'title' }
195 );
448c8424 196
bd077b47 197 # Create a result set that will fetch the artist data
2053ab2a 198 # at the same time as it fetches CDs, using only one query.
884559b1 199 my $millennium_cds_rs = $schema->resultset('CD')->search(
a0638a7b 200 { year => 2000 },
201 { prefetch => 'artist' }
202 );
448c8424 203
880a1a0c 204 my $cd = $millennium_cds_rs->next; # SELECT ... FROM cds JOIN artists ...
bd077b47 205 my $cd_artist_name = $cd->artist->name; # Already has the data so no 2nd query
076652e8 206
fb13a49f 207 # new() makes a Result object but doesnt insert it into the DB.
264f1571 208 # create() is the same as new() then insert().
884559b1 209 my $new_cd = $schema->resultset('CD')->new({ title => 'Spoon' });
f183eccd 210 $new_cd->artist($cd->artist);
f183eccd 211 $new_cd->insert; # Auto-increment primary key filled in after INSERT
f183eccd 212 $new_cd->title('Fork');
213
884559b1 214 $schema->txn_do(sub { $new_cd->update }); # Runs the update in a transaction
f183eccd 215
bd077b47 216 # change the year of all the millennium CDs at once
217 $millennium_cds_rs->update({ year => 2002 });
f183eccd 218
219=head1 DESCRIPTION
220
221This is an SQL to OO mapper with an object API inspired by L<Class::DBI>
bd077b47 222(with a compatibility layer as a springboard for porting) and a resultset API
f183eccd 223that allows abstract encapsulation of database operations. It aims to make
224representing queries in your code as perl-ish as possible while still
a0638a7b 225providing access to as many of the capabilities of the database as possible,
f183eccd 226including retrieving related records from multiple tables in a single query,
53aa53f3 227C<JOIN>, C<LEFT JOIN>, C<COUNT>, C<DISTINCT>, C<GROUP BY>, C<ORDER BY> and
228C<HAVING> support.
f183eccd 229
230DBIx::Class can handle multi-column primary and foreign keys, complex
231queries and database-level paging, and does its best to only query the
75d07914 232database in order to return something you've directly asked for. If a
233resultset is used as an iterator it only fetches rows off the statement
234handle as requested in order to minimise memory usage. It has auto-increment
2053ab2a 235support for SQLite, MySQL, PostgreSQL, Oracle, SQL Server and DB2 and is
236known to be used in production on at least the first four, and is fork-
ec6415a9 237and thread-safe out of the box (although
9361b05d 238L<your DBD may not be|DBI/Threads and Thread Safety>).
f183eccd 239
dfccde48 240This project is still under rapid development, so large new features may be
53aa53f3 241marked B<experimental> - such APIs are still usable but may have edge bugs.
242Failing test cases are I<always> welcome and point releases are put out rapidly
dfccde48 243as bugs are found and fixed.
244
245We do our best to maintain full backwards compatibility for published
246APIs, since DBIx::Class is used in production in many organisations,
247and even backwards incompatible changes to non-published APIs will be fixed
248if they're reported and doing so doesn't cost the codebase anything.
249
264f1571 250The test suite is quite substantial, and several developer releases
251are generally made to CPAN before the branch for the next release is
252merged back to trunk for a major release.
f183eccd 253
6ed05cfd 254=head1 HOW TO CONTRIBUTE
255
256Contributions are always welcome, in all usable forms (we especially
257welcome documentation improvements). The delivery methods include git-
258or unified-diff formatted patches, GitHub pull requests, or plain bug
259reports either via RT or the Mailing list. Contributors are generally
260granted full access to the official repository after their first patch
261passes successful review.
262
263=for comment
264FIXME: Getty, frew and jnap need to get off their asses and finish the contrib section so we can link it here ;)
265
266This project is maintained in a git repository. The code and related tools are
267accessible at the following locations:
268
269=over
270
271=item * Official repo: L<git://git.shadowcat.co.uk/dbsrgits/DBIx-Class.git>
272
273=item * Official gitweb: L<http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits/DBIx-Class.git>
274
275=item * GitHub mirror: L<https://github.com/dbsrgits/DBIx-Class>
276
277=item * Authorized committers: L<ssh://dbsrgits@git.shadowcat.co.uk/DBIx-Class.git>
278
279=item * Travis-CI log: L<https://travis-ci.org/dbsrgits/dbix-class/builds>
280
281=for html
282&#x21AA; Stable branch CI status: <img src="https://secure.travis-ci.org/dbsrgits/dbix-class.png?branch=master"></img>
283
284=back
285
3942ab4d 286=head1 AUTHOR
34d52be2 287
266bdcc3 288mst: Matt S. Trout <mst@shadowcatsystems.co.uk>
34d52be2 289
dfccde48 290(I mostly consider myself "project founder" these days but the AUTHOR heading
291is traditional :)
292
3942ab4d 293=head1 CONTRIBUTORS
294
907ed671 295abraxxa: Alexander Hartmaier <abraxxa@cpan.org>
84e3c114 296
fd4b0742 297acca: Alexander Kuznetsov <acca@cpan.org>
298
6d84db2c 299aherzog: Adam Herzog <adam@herzogdesigns.com>
300
daeb1865 301Alexander Keusch <cpan@keusch.at>
302
c3de6b51 303alexrj: Alessandro Ranellucci <aar@cpan.org>
304
630ba6e5 305alnewkirk: Al Newkirk <we@ana.im>
306
6ebf5cbb 307amiri: Amiri Barksdale <amiri@metalabel.com>
308
b703fec7 309amoore: Andrew Moore <amoore@cpan.org>
310
e9bd8a70 311Andrew Mehta <Andrew@unitedgames.co.uk>
312
913b4bae 313andrewalker: Andre Walker <andre@andrewalker.net>
314
266bdcc3 315andyg: Andy Grundman <andy@hybridized.org>
3942ab4d 316
266bdcc3 317ank: Andres Kievsky
3942ab4d 318
59ac6523 319arc: Aaron Crane <arc@cpan.org>
320
624764ae 321arcanez: Justin Hunter <justin.d.hunter@gmail.com>
322
ce4c07df 323ash: Ash Berlin <ash@cpan.org>
324
f8213ab0 325bert: Norbert Csongrádi <bert@cpan.org>
3d5bd2af 326
e9bd8a70 327bfwg: Colin Newell <colin.newell@gmail.com>
328
967a4c40 329blblack: Brandon L. Black <blblack@gmail.com>
3942ab4d 330
62eb8fe8 331bluefeet: Aran Deltac <bluefeet@cpan.org>
332
d6170b26 333bphillips: Brian Phillips <bphillips@cpan.org>
334
f856fe01 335boghead: Bryan Beeley <cpan@beeley.org>
336
23d9df41 337brd: Brad Davis <brd@FreeBSD.org>
338
bcb8f3ed 339bricas: Brian Cassidy <bricas@cpan.org>
340
3d7e3e05 341brunov: Bruno Vecchi <vecchi.b@gmail.com>
342
281719d2 343caelum: Rafael Kitover <rkitover@cpan.org>
344
f5f2af8f 345caldrin: Maik Hentsche <maik.hentsche@amd.com>
346
d3b0e369 347castaway: Jess Robinson
3942ab4d 348
266bdcc3 349claco: Christopher H. Laco
ccb9c9b1 350
266bdcc3 351clkao: CL Kao
3942ab4d 352
e9bd8a70 353Ctrl-o L<http://ctrlo.com/>
354
e21dfd6a 355da5id: David Jack Olrik <djo@cpan.org>
18360aed 356
11343b34 357dariusj: Darius Jokilehto <dariusjokilehto@yahoo.co.uk>
358
5f7ff3f0 359davewood: David Schmidt <davewood@gmx.at>
360
97ad6fb8 361daxim: Lars Dɪᴇᴄᴋᴏᴡ 迪拉斯 <daxim@cpan.org>
362
13de943d 363debolaz: Anders Nor Berle <berle@cpan.org>
364
d1f542db 365dew: Dan Thomas <dan@godders.org>
366
3705e3b2 367dim0xff: Dmitry Latin <dim0xff@gmail.com>
368
266bdcc3 369dkubb: Dan Kubb <dan.kubb-cpan@onautopilot.com>
ccb9c9b1 370
9382ad07 371dnm: Justin Wheeler <jwheeler@datademons.com>
372
0818c9a7 373dpetrov: Dimitar Petrov <mitakaa@gmail.com>
374
e9bd8a70 375duncan_dmg: Duncan Garland <Duncan.Garland@motortrak.com>
376
266bdcc3 377dwc: Daniel Westermann-Clark <danieltwc@cpan.org>
4685e006 378
5cffe785 379dyfrgi: Michael Leuchtenburg <michael@slashhome.org>
8fe164b9 380
7b71391b 381edenc: Eden Cardim <edencardim@gmail.com>
382
e9bd8a70 383Eligo L<http://eligo.co.uk/>
384
bfcecabc 385ether: Karen Etheridge <ether@cpan.org>
386
307f1265 387felliott: Fitz Elliott <fitz.elliott@gmail.com>
388
0ffada27 389freetime: Bill Moseley <moseley@hank.org>
390
ade0fe3b 391frew: Arthur Axel "fREW" Schmidt <frioux@gmail.com>
392
b4987ed0 393goraxe: Gordon Irving <goraxe@cpan.org>
394
d3b0e369 395gphat: Cory G Watson <gphat@cpan.org>
ad3d2d7c 396
61f031bf 397Grant Street Group L<http://www.grantstreet.com/>
398
e758ffe6 399groditi: Guillermo Roditi <groditi@cpan.org>
400
2053211a 401guacamole: Fred Steinberg <fred.steinberg@gmail.com>
402
6dad89f5 403Haarg: Graham Knop <haarg@haarg.org>
404
157ce0cf 405hobbs: Andrew Rodland <arodland@cpan.org>
406
e9bd8a70 407idn: Ian Norton <i.norton@shadowcat.co.uk>
408
5d779578 409ilmari: Dagfinn Ilmari MannsE<aring>ker <ilmari@ilmari.org>
410
0ac0af6c 411initself: Mike Baas <mike@initselftech.com>
412
2bb4c37b 413ironcamel: Naveed Massjouni <naveedm9@gmail.com>
414
f165eda8 415jawnsy: Jonathan Yu <jawnsy@cpan.org>
416
bee21976 417jasonmay: Jason May <jason.a.may@gmail.com>
418
f4c649f8 419jegade: Jens Gassmann <jens.gassmann@atomix.de>
420
81023d83 421jeneric: Eric A. Miller <emiller@cpan.org>
422
d3b0e369 423jesper: Jesper Krogh
5fb0c64c 424
4a743a00 425jgoulah: John Goulah <jgoulah@cpan.org>
426
102a2984 427jguenther: Justin Guenther <jguenther@cpan.org>
d7c4c15c 428
a14a46e2 429jhannah: Jay Hannah <jay@jays.net>
430
dffda3a2 431jmac: Jason McIntosh <jmac@appleseed-sc.com>
432
8b93a938 433jnapiorkowski: John Napiorkowski <jjn1056@yahoo.com>
434
11736b4c 435jon: Jon Schutz <jjschutz@cpan.org>
436
57e9c142 437Joe Carlson <jwcarlson@lbl.gov>
438
1aec4bac 439jshirley: J. Shirley <jshirley@gmail.com>
440
41519379 441kaare: Kaare Rasmussen
442
d3b0e369 443konobi: Scott McWhirter
535fc2ee 444
4e0a89e4 445littlesavage: Alexey Illarionov <littlesavage@orionet.ru>
446
4367679a 447lukes: Luke Saunders <luke.saunders@gmail.com>
448
709ea492 449marcus: Marcus Ramberg <mramberg@cpan.org>
450
114780ee 451mattlaw: Matt Lawrence
452
45bffdf0 453mattp: Matt Phillips <mattp@cpan.org>
454
e9bd8a70 455mdk: Mark Keating <m.keating@shadowcat.co.uk>
456
9736be65 457mna: Maya
458
58755bba 459michaelr: Michael Reddick <michael.reddick@gmail.com>
460
91d0c99f 461milki: Jonathan Chu <milki@rescomp.berkeley.edu>
462
e9bd8a70 463minty: Murray Walker <perl@minty.org>
464
b81d8515 465mithaldu: Christian Walde <walde.christian@gmail.com>
466
582fe49d 467mjemmeson: Michael Jemmeson <michael.jemmeson@gmail.com>
468
2040ad73 469mrf: Mike Francis <ungrim97@gmail.com>
470
167e7634 471mstratman: Mark A. Stratman <stratman@gmail.com>
472
77e7e47d 473ned: Neil de Carteret
474
266bdcc3 475nigel: Nigel Metheringham <nigelm@cpan.org>
6565b410 476
d3b0e369 477ningu: David Kamholz <dkamholz@cpan.org>
478
66cf3a84 479Nniuq: Ron "Quinn" Straight" <quinnfazigu@gmail.org>
480
20b4c148 481norbi: Norbert Buchmuller <norbi@nix.hu>
482
48580715 483nuba: Nuba Princigalli <nuba@cpan.org>
484
d3b0e369 485Numa: Dan Sully <daniel@cpan.org>
486
6eed360c 487oalders: Olaf Alders <olaf@wundersolutions.com>
488
dc571b76 489ovid: Curtis "Ovid" Poe <ovid@cpan.org>
490
6c30f9c3 491oyse: E<Oslash>ystein Torget <oystein.torget@dnv.com>
bf356c54 492
266bdcc3 493paulm: Paul Makepeace
4763f4b7 494
d3b0e369 495penguin: K J Cheetham
496
8cfef6f5 497perigrin: Chris Prather <chris@prather.org>
498
14899528 499peter: Peter Collingbourne <peter@pcc.me.uk>
caac1708 500
f8213ab0 501Peter Siklósi <einon@einon.hu>
502
6c30f9c3 503Peter Valdemar ME<oslash>rch <peter@morch.com>
504
266bdcc3 505phaylon: Robert Sedlacek <phaylon@dunkelheit.at>
a53b95f1 506
56fadd8f 507plu: Johannes Plunien <plu@cpan.org>
508
e9bd8a70 509pplu: Jose Luis Martinez <jlmartinez@capside.com>
510
0c1a4a15 511Possum: Daniel LeWarne <possum@cpan.org>
512
d3b0e369 513quicksilver: Jules Bean
022e0893 514
4ed01b34 515rafl: Florian Ragwitz <rafl@debian.org>
516
0c1a4a15 517rainboxx: Matthias Dietrich <perl@rb.ly>
518
556e90d7 519Relequestual: Ben Hutton <relequestual@gmail.com>
520
868a7b26 521rbo: Robert Bohne <rbo@cpan.org>
522
7ff0dace 523rbuels: Robert Buels <rmb32@cornell.edu>
524
0da8b7da 525rdj: Ryan D Johnson <ryan@innerfence.com>
526
66b1e361 527ribasushi: Peter Rabbitson <ribasushi@cpan.org>
d76e282a 528
b487918c 529rjbs: Ricardo Signes <rjbs@cpan.org>
530
6ffb5be5 531robkinyon: Rob Kinyon <rkinyon@cpan.org>
532
726c8f65 533Robert Olson <bob@rdolson.org>
534
a93441f2 535moltar: Roman Filippov <romanf@cpan.org>
e4c9f3f0 536
dc81dba3 537Sadrak: Felix Antonius Wilhelm Ostmann <sadrak@cpan.org>
538
d3b0e369 539sc_: Just Another Perl Hacker
ba606e58 540
266bdcc3 541scotty: Scotty Allen <scotty@scottyallen.com>
181a28f4 542
1c133e22 543semifor: Marc Mims <marc@questright.com>
544
16667b3a 545SineSwiper: Brendan Byrd <bbyrd@cpan.org>
546
9fbe82fb 547skaufman: Samuel Kaufman <sam@socialflow.com>
548
20b4c148 549solomon: Jared Johnson <jaredj@nmgi.com>
550
88f937fb 551spb: Stephen Bennett <stephen@freenode.net>
552
59187a3b 553Squeeks <squeek@cpan.org>
554
637ca936 555sszabo: Stephan Szabo <sszabo@bigpanda.com>
556
e9bd8a70 557Stephen Peters <steve@stephenpeters.me>
558
a9e8284f 559talexb: Alex Beamish <talexb@gmail.com>
560
7bf0d0d6 561tamias: Ronald J Kimball <rjk@tamias.net>
f92a9d79 562
e9bd8a70 563TBSliver: Tom Bloor <t.bloor@shadowcat.co.uk>
564
386c2272 565teejay : Aaron Trevena <teejay@cpan.org>
566
e9bd8a70 567theorbtwo: James Mastros <james@mastros.biz>
568
84e3c114 569Todd Lipcon
e063fe2c 570
6eb6264e 571Tom Hukins
572
2e4b6d78 573tonvoon: Ton Voon <tonvoon@cpan.org>
574
d15e3fc5 575triode: Pete Gamache <gamache@cpan.org>
576
d3b0e369 577typester: Daisuke Murase <typester@cpan.org>
c0e7b4e5 578
4740bdb7 579victori: Victor Igumnov <victori@cpan.org>
580
d3b0e369 581wdh: Will Hawes
4c248161 582
124162a0 583wesm: Wes Malone <wes@mitsi.com>
584
00c03ced 585willert: Sebastian Willert <willert@cpan.org>
586
66d2a14e 587wreis: Wallace Reis <wreis@cpan.org>
588
d7c37d66 589xenoterracide: Caleb Cushing <xenoterracide@gmail.com>
590
e9bd8a70 591uree: Oriol Soriano <oriol.soriano@capside.com>
592
d52d4d6e 593yrlnry: Mark Jason Dominus <mjd@plover.com>
594
d3b0e369 595zamolxes: Bogdan Lucaciu <bogdan@wiz.ro>
78060df8 596
f9139687 597Zefram: Andrew Main <zefram@fysh.org>
598
b38e10bd 599=head1 COPYRIGHT
600
16be93fe 601Copyright (c) 2005 - 2011 the DBIx::Class L</AUTHOR> and L</CONTRIBUTORS>
b38e10bd 602as listed above.
603
96154ef7 604=head1 LICENSE
605
606This library is free software and may be distributed under the same terms
607as perl itself.