We have an Oracle 9i function with IN parameter of type TABLE (TYPE TSET AS TABLE OF NUMBER) and need to pass this parameter from Delphi. The code is:
MyIdObj := TOracleObject.Create(PrintSession, 'TSet', '');
MyIdObj.Elements[0] := Value1;
MyIdObj.Elements[1] := Value2;
...
Now I am...