Help for this page

Select Code to Download


  1. or download this
    use Memoize;
    memoize('dbi');
    ...
    sub dbi {
      DBI->connect(yadda, yadda);
    }
    
  2. or download this
    {
      my $dbh;
    ...
        $dbh ||= DBI->connect(yadda, yadda);
      }
    }