Help for this page

Select Code to Download


  1. or download this
    CREATE PROC SP_DAVE
    AS
    ...
        end
        RETURN 0;
    END;
    
  2. or download this
        $sql = "EXEC SP_DAVE"; 
        $sth = $dbh->prepare($sql);
            $sth->execute 
               or 
                  print "\nError EXECUTE\n$DBI::errstr\n";