Hi, I am trying to use Stored Procedure from PHP but am getting a message "Syntax Error". My sql is simple "exec proc1" where proc1 is the stored procedure.
Is it possible to use stored procedure from PHP and the syntax?
Thanks
Jag Cheema
I'm using stored proc with sybase and they work with the same syntax you are using, so I'm sure it works with oracle.
so poke around!!!
good luck,
zone16
I was able to make it work using the following syntax: " begin proc1;end;" Similar syntax works for functions also. Thanks.