jabarreras
Member²
Hello:
We use Delphi7 upd1 and DOA 4.0.5.0 with ORACLE 9.2.0.8.0
PL-> (inside the package testDOA)
In Delphi I can't see the way I can reach vPar.
I've been searching posts about this topic, I've read about TOracleObject.
You can use DeclareVariable and SetComplexVariable to deal with this kind of parameters in a TOracleQuery, but such methods are not available for TOraclePackage.
We don't want to use Package Wizard.
Help needed!!!!
We use Delphi7 upd1 and DOA 4.0.5.0 with ORACLE 9.2.0.8.0
PL-> (inside the package testDOA)
Code:
TYPE aPar is VARRAY(5) OF VARCHAR2(30);
function TstParam(nPar out integer, vPar OUT aPar) RETURN VARCHAR2
BEGIN
vPar:=aPar();
-- and we fill nPar and vPar
END;
I've been searching posts about this topic, I've read about TOracleObject.
You can use DeclareVariable and SetComplexVariable to deal with this kind of parameters in a TOracleQuery, but such methods are not available for TOraclePackage.
We don't want to use Package Wizard.
Help needed!!!!