Original BDE message is: near Limit: syntax error
Posted: Wed 29 Feb 2012 15:07
What I'm doing wrong?
in DBonitor:
(?, ?, ?)
Why DBMonitor does not allow to copy the text of event?
Code: Select all
Limits.Open;
Limits.First;
for Iter := 1 to LimitParamCount do
begin
Limit := GetDefaultLimit(Iter, AModel);
if Limit > 0 then
begin
Limits.Append;
LimitsModel.Value := AModel;
LimitsParamID.Value := Iter;
LimitsLimit.Value := Limit;
Limits.Post; // here I having error message !!!
end;Code: Select all
INSERT INTO LimitValues
(Model, ParamID, Limit)
VALUESWhy DBMonitor does not allow to copy the text of event?