Subject: | Documenting passing CDBI::Loader args in setup() |
To pass arguments through to CDBI::Loader->new() in the Maypole->setup()
call, you need to say something like
MyApp->setup( $dsn, $usr, $pass, { options => {AutoCommit => 1} } );
It has to be this ugly to accommodate other named options in the final
href. Various docs are out of date, saying
MyApp->setup( $dsn, $usr, $pass, {AutoCommit => 1});
d.