Help for this page

Select Code to Download


  1. or download this
    our @connection = ($dsn, $user, $passwd, \%options);
    our $dbh = DBI->connect_cached( @connection );
    ...
    
        ## do query ##
    }
    
  2. or download this
    unless ($dbh->ping) {
        $dbh = DBI->connect(@connection);
    }