Help for this page

Select Code to Download


  1. or download this
    my $dbh = DBI->connect(
       'connect string','user','pass',
       {RaiseError=>1, HandleError => \&bail_out},
    };
    
  2. or download this
    my $sth = $dbh->prepare("select * from foo");
    $sth->execute;
    ...
          
       ]
    );