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