Help for this page

Select Code to Download


  1. or download this
      $dbh = DBI->connect($dsn, $user, $password,
                          { RaiseError => 1, AutoCommit => 0 });
    
  2. or download this
    my $user='fionbarr';
    my $password='secret';
    my $dsn= '...';
      $dbh = DBI->connect($dsn, $user, $password,
                          { RaiseError => 1, AutoCommit => 0 });