[Catalyst] multiple database model support

2008-02-26 Thread Tyler Bird
hi I just developed a catalyst application and I was wondering how I could get it to support multiple databases. Instead of just one per application. Tyler ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listin

[Catalyst] multiple schemas per application

2008-02-25 Thread Tyler Bird
Hi, How can I support multiple schema's per application and share them between applications hopefully without duplication in the catalyst framework? Tyler ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo

[Catalyst] debug mode or debug levels?

2008-02-25 Thread Tyler Bird
hi I want to only show certain log messages to my console based on the log level 'debug' I believe catalyst supports log levels, but this doesn't seem to be working if ( $c->is_debug() ) { $c->log("log message here.."); } It seems to be sending the log message no matter if ( $c->is_fatal()

[Catalyst] contollers being cached.

2008-02-25 Thread Tyler Bird
Hi, I just installed catalyst and I change parameter in my controller file say to retrieve a different ranking of books $context->stash->{books} = [ $context->model('MyAppDB::Book')->search( { rating => 5 } ) ]; to $context->stash->{books} = [ $context->model('