Ora procedures returning ref_cursor, Delphi DataBound Controls and the Package Wizard

sveinn

Member²
Hi,

If this was an Oracle procedure returning a cursor I would like to display in a TDBGrid:

PROCEDURE CursorRetProc(Id VARCHAR2, CursorVar IN OUT REF CURSOR);

 
Unfortunately this is not yet possible. In the next release you will be able to connect a TOracleQuery to a TOracleDataSet for the result set, so that you can use a Package Wizard generated class to obtain the cursor and pass it to the dataset.

At the moment you need to stick to the PL/SQL Block concept.

------------------
Marco Kalter
Allround Automations
 
Back
Top