Hi,
I succesfully used the example in this forum to use a stored function with a record type as return value.
But now I want that function to be updateable!
Is there a way I can do this?
My SQL in the TOracleDataset looks now like this:
declare
rec tb_analyse_component%rowtype;
begin
rec:=MICADO.DOMEIN_PACK.F_GETANALYSECOMPONENT(
_AnalyseComponentID);
_ID := rec.Analyse_Component_ID;
_Naam := rec.Naam;
_Omschrijving := rec.Omschrijving;
end;
Thanx in advance.
Perry van der Meeren
I succesfully used the example in this forum to use a stored function with a record type as return value.
But now I want that function to be updateable!
Is there a way I can do this?
My SQL in the TOracleDataset looks now like this:
declare
rec tb_analyse_component%rowtype;
begin
rec:=MICADO.DOMEIN_PACK.F_GETANALYSECOMPONENT(




end;
Thanx in advance.
Perry van der Meeren