Help for this page

Select Code to Download


  1. or download this
    $sth = $dbh->prepare("execute sp_test_1 ?");
    $sth->execute($y) or die "execute: $!";
    
  2. or download this
    $dbh->do("execute sp_test_1 '$y'");
    
    # or
    $sth = $dbh->prepare("execute sp_test_1 '$y'");
    $sth->execute;