add alt. hook to PerRequestSchema trait
[catagits/Catalyst-Model-DBIC-Schema.git] / lib / Catalyst / Model / DBIC / Schema.pm
CommitLineData
ad91060a 1package Catalyst::Model::DBIC::Schema;
2
0fbbc8d5 3use Moose;
0f3de2c4 4use mro 'c3';
0fbbc8d5 5extends 'Catalyst::Model';
fb691af9 6with 'CatalystX::Component::Traits';
0fbbc8d5 7
9ee0a868 8our $VERSION = '0.59';
7dfd616a 9$VERSION = eval $VERSION;
f090a149 10
73f72d28 11use namespace::autoclean;
bd309c0c 12use Carp::Clan '^Catalyst::Model::DBIC::Schema';
bfcd6e3d 13use Data::Dumper;
2201c2e4 14use DBIx::Class ();
ad91060a 15
61ed82a5 16use Catalyst::Model::DBIC::Schema::Types
d816d7bf 17 qw/ConnectInfo LoadedClass SchemaClass Schema/;
61ed82a5 18
41bcf32f 19use MooseX::Types::Moose qw/ArrayRef Str ClassName Undef/;
0fbbc8d5 20
ad91060a 21=head1 NAME
22
23Catalyst::Model::DBIC::Schema - DBIx::Class::Schema Model Class
24
25=head1 SYNOPSIS
26
cbe03ea7 27First, prepare your database schema using L<DBIx::Class>, see
28L<Catalyst::Helper::Model::DBIC::Schema> for how to generate a
29L<DBIx::Class::Schema> from your database using the Helper script, and
30L<DBIx::Class::Schema::Loader::Base>.
07edc53e 31
cbe03ea7 32A typical usage of the helper script would be:
aabc1d75 33
cbe03ea7 34 script/myapp_create.pl model FilmDB DBIC::Schema MyApp::Schema::FilmDB \
35 create=static dbi:mysql:filmdb dbusername dbpass \
f24a5fbb 36 quote_names=1
aabc1d75 37
cbe03ea7 38If you are unfamiliar with L<DBIx::Class>, see L<DBIx::Class::Manual::Intro>
39first.
aabc1d75 40
cbe03ea7 41These examples assume that you already have a schema called
42C<MyApp::Schema::FilmDB>, which defines some Result classes for tables in
43C<MyApp::Schema::FilmDB::Result::Actor> and
44C<MyApp::Schema::FilmDB::Result::Film>. Either created by the helper script (as
45shown above) or manually.
aabc1d75 46
cbe03ea7 47The helper also creates a Model in C<lib/MyApp/Model/FilmDB.pm>, if you already
48have a schema you can create just the Model using:
07edc53e 49
cbe03ea7 50 script/myapp_create.pl model FilmDB DBIC::Schema MyApp::Schema::FilmDB
51 dbi:mysql:filmdb dbusername dbpass
aabc1d75 52
cbe03ea7 53The connect_info is optional and will be hardcoded into the Model if provided.
54It's better to configure it in your L<Catalyst> config file, which will also
55override any hardcoded config, see L</connect_info> for examples.
aabc1d75 56
95b41ca8 57Now you have a working Model which accesses your separate DBIC Schema. This can
58be used/accessed in the normal Catalyst manner, via C<< $c->model() >>:
aabc1d75 59
95b41ca8 60 my $db_model = $c->model('FilmDB'); # a Catalyst::Model
61 my $dbic = $c->model('FilmDB')->schema; # the actual DBIC object
aabc1d75 62
95b41ca8 63There is also a shortcut, which returns a L<DBIx::Class::ResultSet> directly,
64instead of a L<Catalyst::Model>:
07edc53e 65
95b41ca8 66 my $rs = $c->model('FilmDB::Actor');
aabc1d75 67
cbe03ea7 68See L<DBIx::Class::ResultSet> to find out more about which methods can be
69called on ResultSets.
70
71You can also define your own ResultSet methods to encapsulate the
72database/business logic of your applications. These go into, for example,
73C<lib/MyApp/Schema/FilmDB/ResultSet/Actor.pm>. The class must inherit from
74L<DBIx::Class::ResultSet> and is automatically loaded.
75
76Then call your methods like any other L<DBIx::Class::ResultSet> method:
77
78 $c->model('FilmDB::Actor')->SAG_members
aabc1d75 79
95b41ca8 80=head2 Some examples:
aabc1d75 81
f1613faa 82 # to access schema methods directly:
83 $c->model('FilmDB')->schema->source(...);
84
85 # to access the source object, resultset, and class:
07edc53e 86 $c->model('FilmDB')->source(...);
87 $c->model('FilmDB')->resultset(...);
88 $c->model('FilmDB')->class(...);
c12b7310 89
07edc53e 90 # For resultsets, there's an even quicker shortcut:
91 $c->model('FilmDB::Actor')
92 # is the same as $c->model('FilmDB')->resultset('Actor')
ad91060a 93
f1613faa 94 # To get the composed schema for making new connections:
95 my $newconn = $c->model('FilmDB')->composed_schema->connect(...);
96
97 # Or the same thing via a convenience shortcut:
98 my $newconn = $c->model('FilmDB')->connect(...);
99
100 # or, if your schema works on different storage drivers:
101 my $newconn = $c->model('FilmDB')->composed_schema->clone();
102 $newconn->storage_type('::LDAP');
103 $newconn->connection(...);
104
105 # and again, a convenience shortcut
106 my $newconn = $c->model('FilmDB')->clone();
107 $newconn->storage_type('::LDAP');
108 $newconn->connection(...);
109
95b41ca8 110To set up authentication, see L</"Setting up DBIC authentication"> below.
111
ad91060a 112=head1 DESCRIPTION
113
7b39f3f0 114This is a Catalyst Model for L<DBIx::Class::Schema>-based Models. See
ef91bcf9 115the documentation for L<Catalyst::Helper::Model::DBIC::Schema> for
116information on generating these Models via Helper scripts.
ad91060a 117
cbe03ea7 118When your Catalyst app starts up, a thin Model layer is created as an interface
119to your DBIC Schema. It should be clearly noted that the model object returned
120by C<< $c->model('FilmDB') >> is NOT itself a DBIC schema or resultset object,
121but merely a wrapper proving L<methods|/METHODS> to access the underlying
ae3d05c2 122schema.
d52bc376 123
124In addition to this model class, a shortcut class is generated for each
125source in the schema, allowing easy and direct access to a resultset of the
126corresponding type. These generated classes are even thinner than the model
127class, providing no public methods but simply hooking into Catalyst's
128model() accessor via the
129L<ACCEPT_CONTEXT|Catalyst::Component/ACCEPT_CONTEXT> mechanism. The complete
130contents of each generated class is roughly equivalent to the following:
131
132 package MyApp::Model::FilmDB::Actor
133 sub ACCEPT_CONTEXT {
134 my ($self, $c) = @_;
135 $c->model('FilmDB')->resultset('Actor');
136 }
137
138In short, there are three techniques available for obtaining a DBIC
139resultset object:
140
141 # the long way
142 my $rs = $c->model('FilmDB')->schema->resultset('Actor');
143
144 # using the shortcut method on the model object
145 my $rs = $c->model('FilmDB')->resultset('Actor');
146
147 # using the generated class directly
148 my $rs = $c->model('FilmDB::Actor');
149
c082639a 150In order to add methods to a DBIC resultset, you cannot simply add them to
151the source (row, table) definition class; you must define a separate custom
cbe03ea7 152resultset class. This is just a matter of making a
153C<lib/MyApp/Schema/ResultSet/Actor.pm> class that inherits from
154L<DBIx::Class::ResultSet>, if you are using
155L<DBIx::Class::Schema/load_namespaces>, the default for helper script generated
156schemas.
157
158See L<DBIx::Class::Manual::Cookbook/"Predefined searches">
159for information on definining your own L<DBIx::Class::ResultSet> classes for
160use with L<DBIx::Class::Schema/load_classes>, the old default.
c082639a 161
ad91060a 162=head1 CONFIG PARAMETERS
163
c4fee9b8 164=head2 schema_class
ad91060a 165
166This is the classname of your L<DBIx::Class::Schema> Schema. It needs
aabc1d75 167to be findable in C<@INC>, but it does not need to be inside the
168C<Catalyst::Model::> namespace. This parameter is required.
ad91060a 169
c4fee9b8 170=head2 connect_info
ad91060a 171
f24a5fbb 172This is a hashref or arrayref of connection parameters, which are specific to
173your C<storage_type> (see your storage type documentation for more details). If
174you only need one parameter (e.g. the DSN), you can just pass a string.
ad91060a 175
0f2fd2c0 176This is not required if C<schema_class> already has connection information
f24a5fbb 177defined inside itself (which isn't highly recommended, but can be done.)
0f2fd2c0 178
7db6da78 179For L<DBIx::Class::Storage::DBI>, which is the only supported
180C<storage_type> in L<DBIx::Class> at the time of this writing, the
181parameters are your dsn, username, password, and connect options hashref.
182
018eb0e2 183See L<DBIx::Class::Storage::DBI/connect_info> for a detailed explanation
184of the arguments supported.
7db6da78 185
186Examples:
187
2201c2e4 188 connect_info => {
189 dsn => 'dbi:Pg:dbname=mypgdb',
190 user => 'postgres',
191 password => ''
192 }
07edc53e 193
2201c2e4 194 connect_info => {
195 dsn => 'dbi:SQLite:dbname=foo.db',
196 on_connect_do => [
197 'PRAGMA synchronous = OFF',
198 ]
199 }
07edc53e 200
2201c2e4 201 connect_info => {
202 dsn => 'dbi:Pg:dbname=mypgdb',
203 user => 'postgres',
204 password => '',
205 pg_enable_utf8 => 1,
206 on_connect_do => [
207 'some SQL statement',
208 'another SQL statement',
209 ],
210 }
7db6da78 211
8281c933 212Or using L<Config::General>:
213
214 <Model::FilmDB>
215 schema_class MyApp::Schema::FilmDB
c34bcab6 216 traits Caching
8281c933 217 <connect_info>
2201c2e4 218 dsn dbi:Pg:dbname=mypgdb
219 user postgres
42e14c31 220 password ""
2201c2e4 221 auto_savepoint 1
f24a5fbb 222 quote_names 1
8281c933 223 on_connect_do some SQL statement
224 on_connect_do another SQL statement
225 </connect_info>
b9cc2f76 226 user_defined_schema_accessor foo
8281c933 227 </Model::FilmDB>
228
229or
230
231 <Model::FilmDB>
232 schema_class MyApp::Schema::FilmDB
233 connect_info dbi:SQLite:dbname=foo.db
234 </Model::FilmDB>
235
2201c2e4 236Or using L<YAML>:
237
238 Model::MyDB:
239 schema_class: MyDB
b9cc2f76 240 traits: Caching
2201c2e4 241 connect_info:
242 dsn: dbi:Oracle:mydb
243 user: mtfnpy
244 password: mypass
245 LongReadLen: 1000000
246 LongTruncOk: 1
b9cc2f76 247 on_connect_call: 'datetime_setup'
f24a5fbb 248 quote_names: 1
2201c2e4 249
250The old arrayref style with hashrefs for L<DBI> then L<DBIx::Class> options is also
251supported:
252
253 connect_info => [
254 'dbi:Pg:dbname=mypgdb',
255 'postgres',
256 '',
257 {
258 pg_enable_utf8 => 1,
259 },
260 {
0fbbc8d5 261 auto_savepoint => 1,
2201c2e4 262 on_connect_do => [
263 'some SQL statement',
264 'another SQL statement',
265 ],
266 }
267 ]
268
c34bcab6 269=head2 traits
0fbbc8d5 270
41bcf32f 271Array of Traits to apply to the instance. Traits are L<Moose::Role>s.
272
d816d7bf 273They are relative to the C<< MyApp::TraitFor::Model::DBIC::Schema:: >>, then
274the C<< Catalyst::TraitFor::Model::DBIC::Schema:: >> namespaces, unless
275prefixed with C<+> in which case they are taken to be a fully qualified name.
276E.g.:
2201c2e4 277
c34bcab6 278 traits Caching
fb691af9 279 traits +MyApp::TraitFor::Model::Foo
2201c2e4 280
0fbbc8d5 281A new instance is created at application time, so any consumed required
282attributes, coercions and modifiers will work.
2201c2e4 283
fb691af9 284Traits are applied at L<Catalyst::Component/COMPONENT> time using
285L<CatalystX::Component::Traits>.
0fbbc8d5 286
41bcf32f 287C<ref $self> will be an anon class if any traits are applied, C<<
288$self->_original_class_name >> will be the original class.
f090a149 289
c7d7b849 290When writing a Trait, interesting points to modify are C<BUILD>, L</setup> and
291L</ACCEPT_CONTEXT>.
0fbbc8d5 292
c34bcab6 293Traits that come with the distribution:
0fbbc8d5 294
295=over 4
2201c2e4 296
fb691af9 297=item L<Catalyst::TraitFor::Model::DBIC::Schema::Caching>
0fbbc8d5 298
fb691af9 299=item L<Catalyst::TraitFor::Model::DBIC::Schema::Replicated>
c4fee9b8 300
d816d7bf 301=item L<Catalyst::TraitFor::Model::DBIC::Schema::SchemaProxy>
302
b75fb6c1 303=item L<Catalyst::TraitFor::Model::DBIC::Schema::PerRequestSchema>
304
0fbbc8d5 305=back
8281c933 306
c4fee9b8 307=head2 storage_type
ad91060a 308
309Allows the use of a different C<storage_type> than what is set in your
310C<schema_class> (which in turn defaults to C<::DBI> if not set in current
f1613faa 311L<DBIx::Class>). Completely optional, and probably unnecessary for most
312people until other storage backends become available for L<DBIx::Class>.
ad91060a 313
c7d7b849 314=head1 ATTRIBUTES
315
316The keys you pass in the model configuration are available as attributes.
317
318Other attributes available:
319
320=head2 connect_info
321
322Your connect_info args normalized to hashref form (with dsn/user/password.) See
323L<DBIx::Class::Storage::DBI/connect_info> for more info on the hashref form of
324L</connect_info>.
325
326=head2 model_name
327
328The model name L<Catalyst> uses to resolve this model, the part after
329C<::Model::> or C<::M::> in your class name. E.g. if your class name is
330C<MyApp::Model::DB> the L</model_name> will be C<DB>.
331
c7d7b849 332=head2 _default_cursor_class
333
6f6b9c2d 334What to reset your L<DBIx::Class::Storage::DBI/cursor_class> to if a custom one
c7d7b849 335doesn't work out. Defaults to L<DBIx::Class::Storage::DBI::Cursor>.
336
fb691af9 337=head1 ATTRIBUTES FROM L<MooseX::Traits::Pluggable>
338
339=head2 _original_class_name
340
341The class name of your model before any L</traits> are applied. E.g.
342C<MyApp::Model::DB>.
343
c7d7b849 344=head2 _traits
345
6f6b9c2d 346Unresolved arrayref of traits passed in the config.
c7d7b849 347
348=head2 _resolved_traits
349
350Traits you used resolved to full class names.
351
21d8159f 352=head1 CONFIGURING YOUR SCHEMA AND RESULTSETS
353
354See the documentation for
355L<Catalyst::TraitFor::Model::DBIC::Schema::SchemaProxy> for instructions on how
356to pass config values from your L<Catalyst> config to your
357L<DBIx::Class::Schema> and/or L<DBIx::Class::ResultSet> classes.
358
ad91060a 359=head1 METHODS
360
c4fee9b8 361=head2 new
ad91060a 362
363Instantiates the Model based on the above-documented ->config parameters.
0f2fd2c0 364The only required parameter is C<schema_class>. C<connect_info> is
365required in the case that C<schema_class> does not already have connection
366information defined for it.
ad91060a 367
c4fee9b8 368=head2 schema
f1613faa 369
370Accessor which returns the connected schema being used by the this model.
371There are direct shortcuts on the model class itself for
372schema->resultset, schema->source, and schema->class.
373
c4fee9b8 374=head2 composed_schema
f1613faa 375
376Accessor which returns the composed schema, which has no connection info,
377which was used in constructing the C<schema> above. Useful for creating
378new connections based on the same schema/model. There are direct shortcuts
379from the model object for composed_schema->clone and composed_schema->connect
380
c4fee9b8 381=head2 clone
f1613faa 382
383Shortcut for ->composed_schema->clone
384
c4fee9b8 385=head2 connect
f1613faa 386
387Shortcut for ->composed_schema->connect
388
c4fee9b8 389=head2 source
c12b7310 390
f1613faa 391Shortcut for ->schema->source
392
c4fee9b8 393=head2 class
f1613faa 394
395Shortcut for ->schema->class
396
c4fee9b8 397=head2 resultset
f1613faa 398
399Shortcut for ->schema->resultset
400
d816d7bf 401=head2 txn_do
402
403Shortcut for ->schema->txn_do
404
405=head2 txn_scope_guard
406
407Shortcut for ->schema->txn_scope_guard
408
c4fee9b8 409=head2 storage
f1613faa 410
411Provides an accessor for the connected schema's storage object.
21d8159f 412
413See L<DBIx::Class::Storage> and L<DBIx::Class::Storage::DBI>.
b8427e0b 414
ad91060a 415=cut
416
c34bcab6 417has schema_class => (
0fbbc8d5 418 is => 'ro',
2fa0a1f1 419 isa => SchemaClass,
0fbbc8d5 420 coerce => 1,
421 required => 1
422);
423
c34bcab6 424has storage_type => (is => 'rw', isa => Str);
0fbbc8d5 425
18b829f0 426has connect_info => (is => 'rw', isa => ConnectInfo, coerce => 1);
0fbbc8d5 427
c7d7b849 428has model_name => (
429 is => 'ro',
430 isa => Str,
431 required => 1,
432 lazy_build => 1,
433);
ad91060a 434
c34bcab6 435has _default_cursor_class => (
61ed82a5 436 is => 'ro',
7314403a 437 isa => LoadedClass,
61ed82a5 438 default => 'DBIx::Class::Storage::DBI::Cursor',
439 coerce => 1
440);
441
d816d7bf 442has schema => (is => 'rw', isa => Schema);
443
21d8159f 444my $app_class;
445
446before COMPONENT => sub {
447 $app_class = ref $_[1] || $_[1];
448};
449
450sub app_class { $app_class }
451
0fbbc8d5 452sub BUILD {
f27a05ea 453 my ($self, $args) = @_;
f2488839 454 my $class = $self->_original_class_name;
2201c2e4 455 my $schema_class = $self->schema_class;
ad91060a 456
2201c2e4 457 if( !$self->connect_info ) {
f1613faa 458 if($schema_class->storage && $schema_class->storage->connect_info) {
2201c2e4 459 $self->connect_info($schema_class->storage->connect_info);
f1613faa 460 }
461 else {
39f5f008 462 die "Either ->config->{connect_info} must be defined for $class"
460e3ac8 463 . " or $schema_class must have connect info defined on it."
464 . " Here's what we got:\n"
ae3d05c2 465 . Dumper($args);
f1613faa 466 }
7db6da78 467 }
468
0fbbc8d5 469 if (exists $self->connect_info->{cursor_class}) {
470 eval { Class::MOP::load_class($self->connect_info->{cursor_class}) }
471 or croak "invalid connect_info: Cannot load your cursor_class"
472 . " ".$self->connect_info->{cursor_class}.": $@";
473 }
474
d816d7bf 475 $self->setup($args);
0fbbc8d5 476
d816d7bf 477 my $is_installed = defined $self->composed_schema;
2201c2e4 478
d816d7bf 479 $self->composed_schema($schema_class->compose_namespace($class))
480 unless $is_installed;
46a2eb0c 481
ae3d05c2 482 $self->schema($self->composed_schema->clone)
483 unless $self->schema;
f1613faa 484
2201c2e4 485 $self->schema->storage_type($self->storage_type)
486 if $self->storage_type;
7db6da78 487
2201c2e4 488 $self->schema->connection($self->connect_info);
489
d816d7bf 490 $self->_install_rs_models unless $is_installed;
2201c2e4 491}
492
493sub clone { shift->composed_schema->clone(@_); }
494
495sub connect { shift->composed_schema->connect(@_); }
496
ae3d05c2 497# some proxy methods, see also SchemaProxy
d816d7bf 498
499sub resultset { shift->schema->resultset(@_); }
500
501sub txn_do { shift->schema->txn_do(@_); }
502
503sub txn_scope_guard { shift->schema->txn_scope_guard(@_); }
504
1d67a585 505sub storage { shift->schema->storage(@_); }
506
c4fee9b8 507=head2 setup
2201c2e4 508
e203cd42 509Called at C<BUILD> time before configuration, but after L</connect_info> is
c7d7b849 510set. To do something after configuuration use C<< after BUILD => >>.
2201c2e4 511
d816d7bf 512Receives a hashref of args passed to C<BUILD>.
513
2201c2e4 514=cut
515
0fbbc8d5 516sub setup { 1 }
2201c2e4 517
c4fee9b8 518=head2 ACCEPT_CONTEXT
2201c2e4 519
73f72d28 520Point of extension for doing things at C<< $c->model >> time with context,
521returns the model instance, see L<Catalyst::Manual::Intro/ACCEPT_CONTEXT> for
522more information.
2201c2e4 523
0fbbc8d5 524=cut
2201c2e4 525
0fbbc8d5 526sub ACCEPT_CONTEXT { shift }
2201c2e4 527
528sub _install_rs_models {
529 my $self = shift;
7b1fe8c2 530 my $class = $self->_original_class_name;
2201c2e4 531
ad91060a 532 no strict 'refs';
39f5f008 533
534 my @sources = $self->schema->sources;
535
ca7cf6f0 536 unless (@sources) {
537 warn <<'EOF' unless $ENV{CMDS_NO_SOURCES};
538******************************* WARNING ***************************************
539* No sources found (did you forget to define your tables?) *
540* *
541* To turn off this warning, set the CMDS_NO_SOURCES environment variable. *
542*******************************************************************************
543EOF
544 }
39f5f008 545
546 foreach my $moniker (@sources) {
0b2a7108 547 my $classname = "${class}::$moniker";
7db6da78 548 *{"${classname}::ACCEPT_CONTEXT"} = sub {
ad91060a 549 shift;
2201c2e4 550 shift->model($self->model_name)->resultset($moniker);
ad91060a 551 }
552 }
2201c2e4 553}
ad91060a 554
61ed82a5 555sub _reset_cursor_class {
556 my $self = shift;
557
558 if ($self->storage->can('cursor_class')) {
559 $self->storage->cursor_class($self->_default_cursor_class)
560 if $self->storage->cursor_class ne $self->_default_cursor_class;
561 }
562}
563
50f488ec 564{
565 my %COMPOSED_CACHE;
566
567 sub composed_schema {
568 my $self = shift;
569 my $class = $self->_original_class_name;
570 my $store = \$COMPOSED_CACHE{$class}{$self->schema_class};
571
572 $$store = shift if @_;
573
574 return $$store
575 }
576}
577
c7d7b849 578sub _build_model_name {
579 my $self = shift;
580 my $class = $self->_original_class_name;
581 (my $model_name = $class) =~ s/^[\w:]+::(?:Model|M):://;
582
583 return $model_name;
41bcf32f 584}
585
0fbbc8d5 586__PACKAGE__->meta->make_immutable;
2201c2e4 587
ca7cf6f0 588=head1 ENVIRONMENT
589
590=over 4
591
592=item CMDS_NO_SOURCES
593
cbe03ea7 594Set this variable if you will be using schemas with no sources (Result classes)
595to disable the warning. The warning is there because having no Result classes
596is usually a mistake.
ca7cf6f0 597
598=back
599
95b41ca8 600=head1 Setting up DBIC authentication
601
602You can set this up with
603L<Catalyst::Authentication::Store::DBIx::Class> in MyApp.pm:
604
605 package MyApp;
606
607 use Catalyst qw/... Authentication .../;
608
609 ...
610
10c73a30 611 __PACKAGE__->config('Plugin::Authentication' =>
612 {
95b41ca8 613 default_realm => 'members',
10c73a30 614 members => {
615 credential => {
616 class => 'Password',
617 password_field => 'password',
618 password_type => 'hashed'
619 password_hash_type => 'SHA-256'
620 },
621 store => {
622 class => 'DBIx::Class',
623 user_model => 'DB::User',
624 role_relation => 'roles',
625 role_field => 'rolename',
95b41ca8 626 }
627 }
10c73a30 628 });
95b41ca8 629
ae3d05c2 630=head1 METHOD PROXYING
631
632The automatic proxying to the underlying L<DBIx::Class::Schema> has been
633removed as of version C<0.34>, to enable this feature add C<SchemaProxy> to
634L</traits>.
635
636See L<Catalyst::TraitFor::Model::DBIC::Schema::SchemaProxy>.
637
ad91060a 638=head1 SEE ALSO
639
7b39f3f0 640General Catalyst Stuff:
641
642L<Catalyst::Manual>, L<Catalyst::Test>, L<Catalyst::Request>,
643L<Catalyst::Response>, L<Catalyst::Helper>, L<Catalyst>,
644
645Stuff related to DBIC and this Model style:
646
647L<DBIx::Class>, L<DBIx::Class::Schema>,
f090a149 648L<DBIx::Class::Schema::Loader>, L<Catalyst::Helper::Model::DBIC::Schema>,
e203cd42 649L<CatalystX::Component::Traits>, L<MooseX::Traits::Pluggable>
ad91060a 650
c34bcab6 651Traits:
c4fee9b8 652
fb691af9 653L<Catalyst::TraitFor::Model::DBIC::Schema::Caching>,
cbe03ea7 654L<Catalyst::TraitFor::Model::DBIC::Schema::Replicated>,
d816d7bf 655L<Catalyst::TraitFor::Model::DBIC::Schema::SchemaProxy>,
b75fb6c1 656L<Catalyst::TraitFor::Model::DBIC::Schema::PerRequestSchema>,
cbe03ea7 657L<Catalyst::TraitFor::Model::DBIC::Schema::QueryLog>
c4fee9b8 658
ad91060a 659=head1 AUTHOR
660
e203cd42 661Brandon L Black C<blblack at gmail.com>
ad91060a 662
e203cd42 663=head1 CONTRIBUTORS
2ff00e2b 664
e203cd42 665caelum: Rafael Kitover C<rkitover at cpan.org>
2ff00e2b 666
4e251d1a 667dandv: Dan Dascalescu C<dandv at cpan.org>
6d9e2623 668
4e251d1a 669bluefeet: Aran Deltac C<bluefeet@cpan.org>
670
671t0m: Tomas Doran C<bobtfish@bobtfish.net>
672
673osfameron: C<osfameron@cpan.org>
49c75c04 674
cbe03ea7 675ozum: Ozum Eldogan C<ozum@ozum.net>
ce9e19dc 676
87145c6c 677Pavel I. Shaydo C<zwon@trinitum.org>
678
566a0bca 679SineSwiper: Brendan Byrd <byrd.b@insightcom.com>
b75fb6c1 680
ad91060a 681=head1 COPYRIGHT
682
21d8159f 683Copyright (c) 2006 - 2010
4e251d1a 684the Catalyst::Model::DBIC::Schema L</AUTHOR> and L</CONTRIBUTORS>
685as listed above.
686
687=head1 LICENSE
688
6d9e2623 689This program is free software. You can redistribute it and/or modify it
ad91060a 690under the same terms as Perl itself.
691
692=cut
693
6941;
21d8159f 695# vim:sts=4 sw=4 et tw=80: