Parameter checking is not useful here, at least not until Insert Files makes use of the query thread.

This commit is contained in:
rosenfield
2007-11-09 07:55:10 +00:00
parent 875407d0bd
commit 727e79aa33

View File

@ -328,6 +328,9 @@ begin
Result := False;
q := TDeferDataSet.Create(nil, callback);
q.Connection := FMysqlConn;
// Parameter checking is used in Insert Files,
// which does not pass through here (yet).
q.ParamCheck := false;
q.SQL.Text := ASql;
ADataset := q;
@ -351,6 +354,9 @@ begin
Result := False;
q := TDeferDataSet.Create(nil, callback);
q.Connection := FMysqlConn;
// Parameter checking is used in Insert Files,
// which does not pass through here (yet).
q.ParamCheck := false;
q.SQL.Text := ASql;
ADataSet := q;