|
-
Apr 9th, 2003, 08:35 AM
#1
Thread Starter
Member
Error.Calling oracle stored procedure in crystal report
Hi,
I created oracle stored procedure and it runs successfully in sql plus.
Then i add procedure name in crystal report it gives error
Error name is:
ORA-01001: cursor invalid
stored procedure is
CREATE OR REPLACE PROCEDURE NEW_WORKER
(Person_Name IN VARCHAR2
,Person_age IN NUMBER
,Per_Lodging IN VARCHAR2 )
AS
BEGIN
INSERT INTO WORKER(Name,Age,Lodging)
values
(Person_name,person_age,per_lodging);
End;
Please help me out.
Thanks.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|