Display timestamp in very right status bar panel when executing a query. See http://www.heidisql.com/forum.php?t=12287

This commit is contained in:
Ansgar Becker
2013-02-28 17:59:57 +00:00
parent a8c2f0ef82
commit b6a1d2ddcc

View File

@ -2215,7 +2215,7 @@ begin
Text := _('query')+' #' + FormatNumber(Thread.BatchPosition+1);
if Thread.QueriesInPacket > 1 then
Text := f_('queries #%s to #%s', [FormatNumber(Thread.BatchPosition+1), FormatNumber(Thread.BatchPosition+Thread.QueriesInPacket)]);
ShowStatusMsg(f_('Executing %s of %s ...', [Text, FormatNumber(Thread.Batch.Count)]));
ShowStatusMsg(TimeToStr(Now) + ': ' + f_('Executing %s of %s ...', [Text, FormatNumber(Thread.Batch.Count)]));
SetProgressPosition(Thread.BatchPosition);
end;