package GroLUG::M::DB; use strict; use base 'Catalyst::Model::DBIC::Plain'; my @conn_info = ( 'dbi:Pg:dbname=iscritti', 'grolug', '', { RaiseError => 1, PrintError => 0, ShowErrorStatement => 1, TraceLevel => 0 } ); __PACKAGE__->load_classes; #DBIx::Class::Schema->compose_connection( __PACKAGE__, @conn_info ); =head1 NAME GroLUG::M::DB - DBIC Plain Model Component =head1 SYNOPSIS See L =head1 DESCRIPTION DBIC Plain Model Component. =head1 AUTHOR A clever guy =head1 LICENSE This library is free software . You can redistribute it and/or modify it under the same terms as perl itself. =cut 1;