From b6a1d2ddccff535442cfaedb7d1fa451e657b22f Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Thu, 28 Feb 2013 17:59:57 +0000 Subject: [PATCH] Display timestamp in very right status bar panel when executing a query. See http://www.heidisql.com/forum.php?t=12287 --- source/main.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/main.pas b/source/main.pas index 4c27f60a..422ecb25 100644 --- a/source/main.pas +++ b/source/main.pas @@ -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;