| Author |
Error while callling stored procedure : Non supported SQL92 token
|
Pushkar Choudhary
Rancher
Joined: May 21, 2006
Posts: 425
|
|
Hi,
I'm trying to call a stored procedure from Java and getting an error while trying to do so.
The stored procedure accepts 1 String parameter as input and outputs 3 parameters as VARCHAR (i.e. String).
I'm able to run the stored procedure separately and it gives the expected result. So, there might not be any issues in the stored procedure. I'm also able to connect to the Oracle database and run a simple select query. The problem only arises while calling a stored procedure.
Here's the code snippet for calling the stored procedure:
Here's the error log:
I'm guessing there might be a problem with the syntax while calling the stored procedure. But, I'm not sure how to fix it.
Any help would be highly appreciated.
Thanks.
-Pushkar
|
 |
Jan Cumps
Bartender
Joined: Dec 20, 2006
Posts: 2343
|
|
Can you show the signature of your stored procedure in pl/sql?
I have my doubts on the correctness of (?,?,?) = call SAMPLE_PROC(?). Should this not be call SAMPLE_PROC(?,?,?,?) ?
Regards, Jan
|
OCUP UML fundamental
ITIL foundation
|
 |
Pushkar Choudhary
Rancher
Joined: May 21, 2006
Posts: 425
|
|
Jan Cumps wrote:I have my doubts on the correctness of (?,?,?) = call SAMPLE_PROC(?). Should this not be call SAMPLE_PROC(?,?,?,?) ?
Thanks a lot Jan. Your suggestion solved the problem.
-Pushkar
|
 |
 |
|
|
subject: Error while callling stored procedure : Non supported SQL92 token
|
|
|