Hi,
I used below code to execute a stored procedure in FB3 (DA 9.5.111.1399 , Delphi 10.3 , FB)
lInputParameters:=DataParameterArray.Create;
lOutputParameters:=Nil;
With lInputParameters.Add do
begin
Name:='IN_W_GRP2_ID_FK';
Value := Trim(sGrp2);
end;
…repeat add the parameter for the input parameter
da_RemoteCmd.Execute('CREATE_W', lInputParameters,lOutputParameters);
The execute command trigger below error message (The TDAParamCollection collection doesnt support Default Items.
Please advise.