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