sample on calling pl/sql stored procedure using VB6.0
Does anyone has a sample on how to call pl/sql stored procedure using visual basic 6.0? Here is the stored procedure:
create or replace test (p1 IN varchar2, p2 IN OUT varchar2, p3 OUT number) as
begin
......
end;
What is the syntex on calling this store procedure? Thanks.
Houmin