Subject TIBOStoredProc -> TIBO_StoredProc
Author Tom Deprez
Hi,

I've problems converting my TIBOStoredProc code to TIBO_StoredProc, can
somebody help me on this?

I used this code for TIBOStoredProc:

with spGetTimeSlot do begin
Params.ParamValues['PROPOSEDDATETIME'] := ProposedDateTime;
ExecSQL;
EndTimeSlot := Params.ParamValues['ENDTIMESLOT'];
end;

Now, I tried to move this to TIBO_StoredProc as :

with spGetTimeSlot do begin
Params.ParamValues['PROPOSEDDATETIME'] := ProposedDateTime;
ExecSQL;
EndTimeSlot := FieldByName('ENDTIMESLOT').AsDateTime;
end;

But I always get the message that the Field 'PROPOSEDDATETIME' doesn't
exists... what am I doing worng??

Thanks
Tom.