Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Urgent -Calling oracle procedure within Delphi
Ach C via DBMonster.com wrote:
> 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
Hi,
Check out Delphi groups, and I am sure you will get some related
postings.
How are you connecting to Oracle from Delphi ?? You should specify
clearly what drivers you are using to Connect to Oracle.
Received on Mon Aug 22 2005 - 06:03:45 CDT