Get rid of Package::Stash \o/
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class.pm
CommitLineData
ea2e61bf 1package DBIx::Class;
2
95b76469 3# important to load early
4use DBIx::Class::_Util;
5
5d283305 6use strict;
7use warnings;
8
f9cc85ce 9our $VERSION;
10# Always remember to do all digits for the version even if they're 0
11# i.e. first release of 0.XX *must* be 0.XX000. This avoids fBSD ports
12# brain damage and presumably various other packaging systems too
13
14# $VERSION declaration must stay up here, ahead of any other package
15# declarations, as to not confuse various modules attempting to determine
16# this ones version, whether that be s.c.o. or Module::Metadata, etc
c6b73be9 17$VERSION = '0.082899_15';
f9cc85ce 18
19$VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases
20
d38cd95c 21use mro 'c3';
329d7385 22
db29433c 23use base qw/DBIx::Class::Componentised DBIx::Class::AccessorGroup/;
f9080e45 24use DBIx::Class::Exception;
3e110410 25
5f48fa56 26__PACKAGE__->mk_classaccessor( _skip_namespace_frames =>
27 '^DBIx::Class|^SQL::Abstract|^Try::Tiny|^Class::Accessor::Grouped|^Context::Preserve|^Moose::Meta::'
28);
70c28808 29
d009cb7d 30sub component_base_class { 'DBIx::Class' }
77d518d1 31
d095c62d 32# *DO NOT* change this URL nor the identically named =head1 below
33# it is linked throughout the ecosystem
34sub DBIx::Class::_ENV_::HELP_URL () {
35 'http://p3rl.org/DBIx::Class#GETTING_HELP/SUPPORT'
36}
37
ea2e61bf 381;
34d52be2 39
d095c62d 40__END__
41
75d07914 42=head1 NAME
34d52be2 43
7e4b2f59 44DBIx::Class - Extensible and flexible object <-> relational mapper.
34d52be2 45
06752a03 46=head1 WHERE TO START READING
3b1c2bbd 47
06752a03 48See L<DBIx::Class::Manual::DocMap> for an overview of the exhaustive documentation.
49To get the most out of DBIx::Class with the least confusion it is strongly
50recommended to read (at the very least) the
51L<Manuals|DBIx::Class::Manual::DocMap/Manuals> in the order presented there.
52
32250d01 53=cut
54
32250d01 55=head1 GETTING HELP/SUPPORT
06752a03 56
32250d01 57Due to the sheer size of its problem domain, DBIx::Class is a relatively
06752a03 58complex framework. After you start using DBIx::Class questions will inevitably
59arise. If you are stuck with a problem or have doubts about a particular
32250d01 60approach do not hesitate to contact us via any of the following options (the
61list is sorted by "fastest response time"):
3b1c2bbd 62
a06e1181 63=over
3b1c2bbd 64
c6fdaf2a 65=item * IRC: irc.perl.org#dbix-class
66
67=for html
e1ddfc8a 68<a href="https://chat.mibbit.com/#dbix-class@irc.perl.org">(click for instant chatroom login)</a>
3b1c2bbd 69
a06e1181 70=item * Mailing list: L<http://lists.scsys.co.uk/mailman/listinfo/dbix-class>
3b1c2bbd 71
e1ddfc8a 72=item * RT Bug Tracker: L<https://rt.cpan.org/NoAuth/Bugs.html?Dist=DBIx-Class>
86a23587 73
e1ddfc8a 74=item * Twitter: L<https://www.twitter.com/dbix_class>
86a23587 75
86a23587 76=item * Web Site: L<http://www.dbix-class.org/>
a06e1181 77
86a23587 78=back
79
34d52be2 80=head1 SYNOPSIS
81
113e8d16 82For the very impatient: L<DBIx::Class::Manual::QuickStart>
83
84This code in the next step can be generated automatically from an existing
85database, see L<dbicdump> from the distribution C<DBIx-Class-Schema-Loader>.
86
5b56d1ac 87=head2 Schema classes preparation
88
53aa53f3 89Create a schema class called F<MyApp/Schema.pm>:
34d52be2 90
03460bef 91 package MyApp::Schema;
a0638a7b 92 use base qw/DBIx::Class::Schema/;
34d52be2 93
f0bb26f3 94 __PACKAGE__->load_namespaces();
daec44b8 95
a0638a7b 96 1;
daec44b8 97
30e1753a 98Create a result class to represent artists, who have many CDs, in
53aa53f3 99F<MyApp/Schema/Result/Artist.pm>:
daec44b8 100
30e1753a 101See L<DBIx::Class::ResultSource> for docs on defining result classes.
102
03460bef 103 package MyApp::Schema::Result::Artist;
d88ecca6 104 use base qw/DBIx::Class::Core/;
daec44b8 105
a0638a7b 106 __PACKAGE__->table('artist');
107 __PACKAGE__->add_columns(qw/ artistid name /);
108 __PACKAGE__->set_primary_key('artistid');
326dacbf 109 __PACKAGE__->has_many(cds => 'MyApp::Schema::Result::CD', 'artistid');
daec44b8 110
a0638a7b 111 1;
daec44b8 112
30e1753a 113A result class to represent a CD, which belongs to an artist, in
53aa53f3 114F<MyApp/Schema/Result/CD.pm>:
39fe0e65 115
03460bef 116 package MyApp::Schema::Result::CD;
d88ecca6 117 use base qw/DBIx::Class::Core/;
39fe0e65 118
d88ecca6 119 __PACKAGE__->load_components(qw/InflateColumn::DateTime/);
a0638a7b 120 __PACKAGE__->table('cd');
bd077b47 121 __PACKAGE__->add_columns(qw/ cdid artistid title year /);
a0638a7b 122 __PACKAGE__->set_primary_key('cdid');
03460bef 123 __PACKAGE__->belongs_to(artist => 'MyApp::Schema::Result::Artist', 'artistid');
39fe0e65 124
a0638a7b 125 1;
39fe0e65 126
5b56d1ac 127=head2 API usage
128
a0638a7b 129Then you can use these classes in your application's code:
39fe0e65 130
a0638a7b 131 # Connect to your database.
03460bef 132 use MyApp::Schema;
133 my $schema = MyApp::Schema->connect($dbi_dsn, $user, $pass, \%dbi_params);
a0638a7b 134
135 # Query for all artists and put them in an array,
136 # or retrieve them as a result set object.
30e1753a 137 # $schema->resultset returns a DBIx::Class::ResultSet
2053ab2a 138 my @all_artists = $schema->resultset('Artist')->all;
139 my $all_artists_rs = $schema->resultset('Artist');
126042ee 140
30e1753a 141 # Output all artists names
4e8ffded 142 # $artist here is a DBIx::Class::Row, which has accessors
16ccb4fe 143 # for all its columns. Rows are also subclasses of your Result class.
85067746 144 foreach $artist (@all_artists) {
30e1753a 145 print $artist->name, "\n";
146 }
147
a0638a7b 148 # Create a result set to search for artists.
86beca1d 149 # This does not query the DB.
2053ab2a 150 my $johns_rs = $schema->resultset('Artist')->search(
6576ef54 151 # Build your WHERE using an SQL::Abstract structure:
2053ab2a 152 { name => { like => 'John%' } }
a0638a7b 153 );
39fe0e65 154
2053ab2a 155 # Execute a joined query to get the cds.
a0638a7b 156 my @all_john_cds = $johns_rs->search_related('cds')->all;
448c8424 157
f0bb26f3 158 # Fetch the next available row.
a0638a7b 159 my $first_john = $johns_rs->next;
448c8424 160
2053ab2a 161 # Specify ORDER BY on the query.
a0638a7b 162 my $first_john_cds_by_title_rs = $first_john->cds(
163 undef,
164 { order_by => 'title' }
165 );
448c8424 166
bd077b47 167 # Create a result set that will fetch the artist data
2053ab2a 168 # at the same time as it fetches CDs, using only one query.
884559b1 169 my $millennium_cds_rs = $schema->resultset('CD')->search(
a0638a7b 170 { year => 2000 },
171 { prefetch => 'artist' }
172 );
448c8424 173
880a1a0c 174 my $cd = $millennium_cds_rs->next; # SELECT ... FROM cds JOIN artists ...
bd077b47 175 my $cd_artist_name = $cd->artist->name; # Already has the data so no 2nd query
076652e8 176
4b0a90fd 177 # new() makes a Result object but doesn't insert it into the DB.
264f1571 178 # create() is the same as new() then insert().
884559b1 179 my $new_cd = $schema->resultset('CD')->new({ title => 'Spoon' });
f183eccd 180 $new_cd->artist($cd->artist);
f183eccd 181 $new_cd->insert; # Auto-increment primary key filled in after INSERT
f183eccd 182 $new_cd->title('Fork');
183
884559b1 184 $schema->txn_do(sub { $new_cd->update }); # Runs the update in a transaction
f183eccd 185
bd077b47 186 # change the year of all the millennium CDs at once
187 $millennium_cds_rs->update({ year => 2002 });
f183eccd 188
189=head1 DESCRIPTION
190
191This is an SQL to OO mapper with an object API inspired by L<Class::DBI>
bd077b47 192(with a compatibility layer as a springboard for porting) and a resultset API
f183eccd 193that allows abstract encapsulation of database operations. It aims to make
194representing queries in your code as perl-ish as possible while still
a0638a7b 195providing access to as many of the capabilities of the database as possible,
f183eccd 196including retrieving related records from multiple tables in a single query,
53aa53f3 197C<JOIN>, C<LEFT JOIN>, C<COUNT>, C<DISTINCT>, C<GROUP BY>, C<ORDER BY> and
198C<HAVING> support.
f183eccd 199
200DBIx::Class can handle multi-column primary and foreign keys, complex
201queries and database-level paging, and does its best to only query the
75d07914 202database in order to return something you've directly asked for. If a
203resultset is used as an iterator it only fetches rows off the statement
204handle as requested in order to minimise memory usage. It has auto-increment
2053ab2a 205support for SQLite, MySQL, PostgreSQL, Oracle, SQL Server and DB2 and is
206known to be used in production on at least the first four, and is fork-
ec6415a9 207and thread-safe out of the box (although
9361b05d 208L<your DBD may not be|DBI/Threads and Thread Safety>).
f183eccd 209
dfccde48 210This project is still under rapid development, so large new features may be
53aa53f3 211marked B<experimental> - such APIs are still usable but may have edge bugs.
212Failing test cases are I<always> welcome and point releases are put out rapidly
dfccde48 213as bugs are found and fixed.
214
215We do our best to maintain full backwards compatibility for published
216APIs, since DBIx::Class is used in production in many organisations,
217and even backwards incompatible changes to non-published APIs will be fixed
218if they're reported and doing so doesn't cost the codebase anything.
219
264f1571 220The test suite is quite substantial, and several developer releases
221are generally made to CPAN before the branch for the next release is
222merged back to trunk for a major release.
f183eccd 223
6ed05cfd 224=head1 HOW TO CONTRIBUTE
225
226Contributions are always welcome, in all usable forms (we especially
227welcome documentation improvements). The delivery methods include git-
228or unified-diff formatted patches, GitHub pull requests, or plain bug
229reports either via RT or the Mailing list. Contributors are generally
cb32addc 230granted access to the official repository after their first several
231patches pass successful review. Don't hesitate to
232L<contact|/GETTING HELP/SUPPORT> either of the L</CAT HERDERS> with
233any further questions you may have.
6ed05cfd 234
235=for comment
236FIXME: Getty, frew and jnap need to get off their asses and finish the contrib section so we can link it here ;)
237
238This project is maintained in a git repository. The code and related tools are
239accessible at the following locations:
240
241=over
242
243=item * Official repo: L<git://git.shadowcat.co.uk/dbsrgits/DBIx-Class.git>
244
245=item * Official gitweb: L<http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits/DBIx-Class.git>
246
247=item * GitHub mirror: L<https://github.com/dbsrgits/DBIx-Class>
248
249=item * Authorized committers: L<ssh://dbsrgits@git.shadowcat.co.uk/DBIx-Class.git>
250
251=item * Travis-CI log: L<https://travis-ci.org/dbsrgits/dbix-class/builds>
252
253=for html
33d0570d 254&#x21AA; Bleeding edge dev CI status: <img src="https://secure.travis-ci.org/dbsrgits/dbix-class.png?branch=master"></img>
6ed05cfd 255
256=back
257
3440100b 258=head1 AUTHORS
34d52be2 259
3440100b 260Even though a large portion of the source I<appears> to be written by just a
261handful of people, this library continues to remain a collaborative effort -
262perhaps one of the most successful such projects on L<CPAN|http://cpan.org>.
263It is important to remember that ideas do not always result in a direct code
264contribution, but deserve acknowledgement just the same. Time and time again
265the seemingly most insignificant questions and suggestions have been shown
266to catalyze monumental improvements in consistency, accuracy and performance.
34d52be2 267
3440100b 268=for comment this line is replaced with the author list at dist-building time
dfccde48 269
3440100b 270The canonical source of authors and their details is the F<AUTHORS> file at
271the root of this distribution (or repository). The canonical source of
272per-line authorship is the L<git repository|/HOW TO CONTRIBUTE> history
273itself.
f9139687 274
cb32addc 275=head1 CAT HERDERS
276
277The fine folks nudging the project in a particular direction:
278
279=over
280
f06eb015 281B<ribasushi>: Peter Rabbitson <ribasushi@cpan.org>
cb32addc 282(present day maintenance and controlled evolution)
283
f06eb015 284B<castaway>: Jess Robinson <castaway@desert-island.me.uk>
cb32addc 285(lions share of the reference documentation and manuals)
286
f06eb015 287B<mst>: Matt S Trout <mst@shadowcat.co.uk> (project founder -
cb32addc 288original idea, architecture and implementation)
289
290=back
291
a2bd3796 292=head1 COPYRIGHT AND LICENSE
b38e10bd 293
a2bd3796 294Copyright (c) 2005 by mst, castaway, ribasushi, and other DBIx::Class
295L</AUTHORS> as listed above and in F<AUTHORS>.
96154ef7 296
297This library is free software and may be distributed under the same terms
a2bd3796 298as perl5 itself. See F<LICENSE> for the complete licensing terms.