Help for this page

Select Code to Download


  1. or download this
    ### file Myconnection.pl
    use DBI;
    {
    ...
            DBI->connect($dbs, $user, $pass, $opts);
        }
    }
    
  2. or download this
    use lib '/home/user/lib/perl5'; # or wherever
    use 'Myconnection.pl';
    
    my $dbh = myconnect();