Sorry,
but the example in User's Guide doesn't show how to pass a list to a StoredProcedure's param.

In database I've defined a type:
CREATE OR REPLACE TYPE T_String_Table AS TABLE OF VARCHAR2(100) NOT NULL;
and a StoredProcedure:
CREATE OR REPLACE PROCEDURE MyTest(p_Data IN t_String_Table) AS
BEGIN
-- some SQL statements
END;

In Delphi I've a TOracleQuery with this SQL:
BEGIN
MyTest(:p_data);
END;


Please give me an example, how to pass a StringList to the query. And of which type has my param (p_data) do be declared?

Best regards
Rolf