in reply to monk seeking blessing?

return (DBI->connect($dsn,$db_user,$db_pass), {PrintError => 1, RaiseError => 1});

is wrong. It should I think read

return DBI->connect($dsn,$db_user,$db_pass, {PrintError => 1, RaiseError => 1});
---
$world=~s/war/peace/g

Replies are listed 'Best First'.
Re^2: monk seeking blessing?
by hesco (Deacon) on Jan 21, 2006 at 22:04 UTC
    Yes, thank you. That did the trick.

    love the global string substitution in your signature.

    -- Hugh