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