http://qs321.pair.com?node_id=183419


in reply to Perl Singletons

There's no point in even returning an instance. Just return the package name:
package DBconnector; my $dbh; sub new { return __PACKAGE__ } sub connect { my $pointless = shift; $dbh ||= DBI->connect($@); }
and so on.

-- Randal L. Schwartz, Perl hacker

Replies are listed 'Best First'.
Re^2: Perl Singletons
by Aristotle (Chancellor) on Jul 19, 2002 at 20:44 UTC
    $dbh ||= DBI->connect($@);

    You probably mean @_ there.. at least I can't see an eval anywhere *grin*

    ++ tho. :)

    Makeshifts last the longest.