NAME
Class::Dot::Model::Table - Attach table to class.
VERSION
This document describes Class::Dot::Model version v%%VERSION%%
SYNOPSIS
package My::Model::Cat;
use Class::Dot::Model::Table qw(:std);
Table 'cats';
Columns qw( id gender dna action colour );
Primary_Key 'id';
Has_Many 'memories'
=> 'My::Model::Cat::Memory';
DESCRIPTION
Pretty way of defining a DBIx table class.
SUBROUTINES/METHODS
EXPORTED SUBROUTINES
Table $database_table
Set the database table this class should be connected to.
Columns @columns|%$columns
A list of columns in the database table.
Primary_Key $column_name
Sets which column in the columns above that is the primary key for this table.
See DBIx::Class::Relationships for more information on relationships.
Belongs_To $accessor_name => $related_class
Create a belongs to relationship with a parent table.
See DBIx::Class::Relationships for more information on relationships.
Has_Many $accessor_name => $related_class
Creates a one-to-many releationship with another database table.
See DBIx::Class::Relationships for more information on relationships.
Many_To_Many $accessor_name => $link_rel_name, $foreign_rel_name, $opt_attr?
Creates a many-to-many relationship from one table to another.
PRIVATE SUBROUTINES
requires()
Used by L<Class::Dot::Model::Preload> to know which modules this module requires.
DIAGNOSTICS
None.
CONFIGURATION AND ENVIRONMENT
This module uses no external configuration or environment variables.
DEPENDENCIES
INCOMPATIBILITIES
None known.
BUGS AND LIMITATIONS
No bugs have been reported.
Please report any bugs or feature requests to bug-class-dot-model@rt.cpan.org, or through the web interface at CPAN Bug tracker.
SEE ALSO
Class::Dot::Model
DBIx::Class
Class::Dot
DBIx::Class::Relationships
DBIx::Class::Manual::Cookbook
AUTHOR
Ask Solem, ask@0x61736b.net.
LICENSE AND COPYRIGHT
Copyright (c), 2007 Ask Solem ask@0x61736b.net.
All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.
DISCLAIMER OF WARRANTY
BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENSE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.