4
votes
A better way of passing parameters to a TADOStoredProc (Delphi)
ADO will create the parameters for you, you just need to call Refresh on the parameters object:
SP.Connection := SqlConnection; // must be done before setting procedure name
sp.Pr …
2
votes
Delphi: “Parameter object is improperly defined. Inconsistent or incomplete information was provided.”
I've had a chance to try this with a compiler :) I must install one at home sometime.
While I still find your use of WITH unusual, it does seem to work OK.
I have seen the error yo …
