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 …
8
votes
Why does ADO Next record processing slow down in Delphi?
You should call DisableControls on all ADO datasets if you aren't using DB aware controls on the dataset.
Otherwise the speed sucks.
refer to …
