|
-
May 11th, 2005, 04:43 AM
#1
Thread Starter
Member
Calling Oracle stored procedure with Table datatype
HI,
Following is the Oracle Storeprocedure where MYTABLETYPE is
create or replace type myTableType as table
of varchar2 (255);
create or replace procedure usp_cusip(IN_cusip IN MYTABLETYPE)
IS
BEGIN
NULL;
END;
is it possible to call this storeprocedure from VB, If yes how to pass the input value..
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|