Help for this page

Select Code to Download


  1. or download this
    my $dbh = DBI->connect(
       qw(DBI:vendor:database:host user pass),
       {RaiseError=>1}
    );
    
  2. or download this
    my $sth = $dbh->prepare('select foo from bar');
    $sth->execute();