Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: executing a OSP with CGI

by Ovid (Cardinal)
on Jul 15, 2003 at 19:30 UTC ( [id://274540]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $sql = 'exec OSP_FOO_BAR( ?, ?, ? )';
    my $sth = $dbh->prepare($sql);
    $sth->execute($xvar, $yvar, $zvar);
    $dbh->commit();
    
  2. or download this
    $_ = $dbh->quote($_) foreach $xvar, $yvar, $zvar; # foreach aliases $_
    $SQLString = "exec OSP_FOO_BAR( $xvar, $yvar, $zvar )";
    $dbh->do($SQLString);      
    $dbh->commit();
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://274540]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (3)
As of 2024-04-19 22:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found