mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Correct some code comments.
This commit is contained in:
@ -128,7 +128,6 @@ begin
|
|||||||
MessageDlg( 'Error reading file:' + CRLF + filename, mtError, [mbOK], 0 );
|
MessageDlg( 'Error reading file:' + CRLF + filename, mtError, [mbOK], 0 );
|
||||||
break;
|
break;
|
||||||
end;
|
end;
|
||||||
debug('TODO: Non-threaded ExecSql call in TfrmInsertFilesProgress.ProcessFiles().');
|
|
||||||
zq.ExecSql;
|
zq.ExecSql;
|
||||||
lblOperation.caption := 'Freeing memory ...';
|
lblOperation.caption := 'Freeing memory ...';
|
||||||
lblOperation.Repaint;
|
lblOperation.Repaint;
|
||||||
|
@ -328,8 +328,7 @@ begin
|
|||||||
Result := False;
|
Result := False;
|
||||||
q := TDeferDataSet.Create(nil, callback);
|
q := TDeferDataSet.Create(nil, callback);
|
||||||
q.Connection := FMysqlConn;
|
q.Connection := FMysqlConn;
|
||||||
// Parameter checking is used in Insert Files,
|
// Parameter checking is used only in Insert Files, which has it's own TZQuery.
|
||||||
// which does not pass through here (yet).
|
|
||||||
q.ParamCheck := false;
|
q.ParamCheck := false;
|
||||||
q.SQL.Text := ASql;
|
q.SQL.Text := ASql;
|
||||||
ADataset := q;
|
ADataset := q;
|
||||||
@ -354,8 +353,7 @@ begin
|
|||||||
Result := False;
|
Result := False;
|
||||||
q := TDeferDataSet.Create(nil, callback);
|
q := TDeferDataSet.Create(nil, callback);
|
||||||
q.Connection := FMysqlConn;
|
q.Connection := FMysqlConn;
|
||||||
// Parameter checking is used in Insert Files,
|
// Parameter checking is used only in Insert Files, which has it's own TZQuery.
|
||||||
// which does not pass through here (yet).
|
|
||||||
q.ParamCheck := false;
|
q.ParamCheck := false;
|
||||||
q.SQL.Text := ASql;
|
q.SQL.Text := ASql;
|
||||||
ADataSet := q;
|
ADataSet := q;
|
||||||
|
Reference in New Issue
Block a user