请教关于PL/SQL编程方面的问题: 在delphi中调用存储过程,如果传table类型的参数?

create or replace procedure Test_Table(v_Names in TestofTable.t_NameTable) is
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?
谢谢
[961 byte] By [qbhua-奇子] at [2007-12-16]
# 1
和别的参数是一样的用法,就是个字符串嘛
存储过程里面得到这个串后,动态的拼sql……
没有什么特别的地方。
jiezhi-风满袖 at 2007-10-23 > top of Msdn China Tech,Oracle,开发...
# 2
不明白,请明示。
qbhua-奇子 at 2007-10-23 > top of Msdn China Tech,Oracle,开发...
# 3
要看你是如何联Oracle,如何是Oracle提供的连接,应该可以传这种特殊的参数
yaoy at 2007-10-23 > top of Msdn China Tech,Oracle,开发...