# | Line 419 | Line 419 | end; | |
---|---|---|
419 | ||
420 | function TIBStoredProc.ParamByName(const Value: string): TParam; | |
421 | begin | |
422 | + | Prepare; |
423 | Result := FParams.ParamByName(Value); | |
424 | end; | |
425 | ||
# | Line 464 | Line 465 | begin | |
465 | if (Params[j].ParamType <> ptInput) then | |
466 | continue; | |
467 | if not Params[j].Bound then | |
468 | < | IBError(ibxeRequiredParamNotSet, [nil]); |
468 | > | IBError(ibxeRequiredParamNotSet, [Params[j].Name]); |
469 | if Params[j].IsNull then | |
470 | SQLParams[i].IsNull := True | |
471 | else begin |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |