请教关于PL/SQL编程方面的问题: 在delphi中调用存储过程,如果传table类型的参数?
begin
NULL;
end Test_Table;
其中TestofTable是一个package:
create or replace package TestofTable is
-- Author : ADMINISTRATOR
-- Created : 2002-9-4 8:59:44
-- Purpose : Just for test of table type
-- Public type declarations
--type <TypeName> is <Datatype>;
type t_NameTable is table of varchar2(10);
-- Public constant declarations
--<ConstantName> constant <Datatype> := <Value>;
-- Public variable declarations
--<VariableName> <Datatype>;
-- Public function and procedure declarations
--function <FunctionName>(<Parameter> <Datatype>) return <Datatype>;
end TestofTable;
**************************************
请问在delphi中调用procedure Test_Table的时候,如何传递参数v_Names?
谢谢

