Help for this page

Select Code to Download


  1. or download this
    my $dbh = DBI->connect ("dbi:Pg:", $user, $pass, {
        RaiseError         => 1,
    ...
    
    my $sth = $dbh->prepare ("select foo from bar where boom = ?");
    $sth->execute (1);