Skip to Main Content

DevOps, CI/CD and Automation

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Urgent -Calling oracle procedure within Delphi

422864Aug 21 2005 — edited Sep 28 2005
Is there any Oracle guy who knows Delphi? I need help in calling oracle stored procedures by

delphi application.My procedure is simple:
CREATE OR REPLACE PROCEDURE test_proc2(p_result OUT sys_refcursor) AS
BEGIN
  OPEN p_result FOR
    SELECT * FROM emp;
END;
I don't know how should I call this procedure within Delphi and return the cursor.I want to

put the returned cursor into a grid.
-your help will be so appreciated.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 26 2005
Added on Aug 21 2005
1 comment
3,453 views