man Catalyst::Model::DBIC () - DBIC Model Class

NAME

Catalyst::Model::DBIC - DBIC Model Class

SYNOPSIS

    # use the helper
    create model DBIC DBIC dsn user password

    # lib/MyApp/Model/DBIC.pm
    package MyApp::Model::DBIC;

    use base 'Catalyst::Model::DBIC';

    __PACKAGE__->config(
        dsn           => 'dbi:Pg:dbname=myapp',
        password      => '',
        user          => 'postgres',
        options       => { AutoCommit => 1 },
        relationships => 1
    );

    1;

    $c->model('DBIC')->table('foo')->search(...);

    MyApp::Model::DBIC::Table->search(...);

DESCRIPTION

This is the CWDBIx::Class model class. It's built on top of CWDBIx::Class::Loader.

METHODS

new
Initializes DBIx::Class::Loader and loads classes using the class config.
$self->table($name)
Returns the class for given table name.

SEE ALSO

Catalyst, DBIx::Class DBIx::Class::Loader

AUTHOR

Sebastian Riedel, CWsri@cpan.org

COPYRIGHT

This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.