Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: EXECUTE <procname> with Oraperl

Re: EXECUTE <procname> with Oraperl

From: Alla Gribov <alla.gribov_at_metatel.com>
Date: Thu, 28 Oct 1999 11:09:07 -0500
Message-ID: <38187523.443D9CD3@metatel.com>


Try this:

  $stmt = $db->prepare(q{
    BEGIN
        procedure_name(:param1, :param2);
    END;
  });

  $stmt->bind_param(":param1", $param1);   $stmt->bind_param(":rapam2", $param2);

  $stmt->execute;

Alla Gribov

NetComrade wrote:
>
> DOes anybody know how to EXECUTE procedures from ORAPERL?
> A piece of code would be nice....
> We had been experience a problem where the scripts simply exits
>
> Thanx
Received on Thu Oct 28 1999 - 11:09:07 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US