| Catalyst-Model-DBIC documentation | view source | Contained in the Catalyst-Model-DBIC distribution. |
Catalyst::Model::DBIC - (DEPRECATED) DBIC Model Class
# 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(...);
This module has been deprecated in favor of the schema-based Catalyst::Model::DBIC::Schema. This module should only be considered as a temporary measure if you are porting from Catalyst::Model::CDBI.
This is the DBIx::Class model class. It's built on top of
DBIx::Class::Loader.
Initializes DBIx::Class::Loader and loads classes using the class config.
Returns the class for given table name.
Sebastian Riedel <sri@cpan.org>
This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
| Catalyst-Model-DBIC documentation | view source | Contained in the Catalyst-Model-DBIC distribution. |