mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-18 05:18:33 +08:00
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:
@ -2215,7 +2215,7 @@ begin
|
|||||||
Text := _('query')+' #' + FormatNumber(Thread.BatchPosition+1);
|
Text := _('query')+' #' + FormatNumber(Thread.BatchPosition+1);
|
||||||
if Thread.QueriesInPacket > 1 then
|
if Thread.QueriesInPacket > 1 then
|
||||||
Text := f_('queries #%s to #%s', [FormatNumber(Thread.BatchPosition+1), FormatNumber(Thread.BatchPosition+Thread.QueriesInPacket)]);
|
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);
|
SetProgressPosition(Thread.BatchPosition);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user