asp_databases thread: Oracle with delphi
I have created a stored procedure in oracle as follow :
create or replace procedure coba(idnya in varchar2,
namanya out varchar2) is
begin
select first_name into namanya from user_tab where user_id = idnya;
dbms_output.put_line(namanya);
end coba;
but i don't know how to call it from delphi and to show the parameter named "namanya". i've tried it several times but i failed.
pls help me.....
thanks
(Not really for this list, but can't think of a better one at the moment - moderator)
|





