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 -> Urgent -Calling oracle procedure within Delphi

Urgent -Calling oracle procedure within Delphi

From: Ach C via DBMonster.com <forum_at_DBMonster.com>
Date: Sun, 21 Aug 2005 11:23:28 GMT
Message-ID: <532BCF82787B8@DBMonster.com>


Is there any Oracle guy who knows Delphi? I need help in calling oracle stored procedures by delphi application.My procedure is simple:  [code]CREATE OR REPLACE PROCEDURE test_proc2(p_result OUT sys_refcursor) AS BEGIN
  OPEN p_result FOR
    SELECT * FROM emp;
END;[/code]
 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.

-- 
Message posted via http://www.dbmonster.com
Received on Sun Aug 21 2005 - 06:23:28 CDT

Original text of this message

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