what substitution for T...StoredProc

Do I see clearly - there is no equivalent for T..StoredProc.
In the NCOCI8-package is a nice component I love. It handles pure procedures and packages too. And the objectinspectors features give me the full necessary acces to it.
The TOraclePackage doesn't give me a list of Packages...
I've to use the Package-wizzard to generate a Class-definition. Is that the recommended way.
 
It depends on your application.

For simple packaged function or procedure calls, you can use the TOraclePackage component. For complex calls, you can use a TOracleQuery with a PL/SQL Block.

If you call many packaged program units, the Package Wizard is a good alternative, as it hides all the complexity of function an procedure calls.

If a function or procedure returns a result set that you want to access with data-aware controls, you need to use a TOracleDataSet with a PL/SQL Block that calls the program unit.
 
Back
Top