in reply to executing a OSP with CGI
This should make sure that the variables are insert with correct escape codes. Perhaps this will be enough?my $query = "exec OSP_FOO_BAR(?, ?, ?)"; my $sth = $dbh->prepare($query); $sth->execute($xvar, $yvar, $zvar);
|
|---|