From 93e1b39f943280aef6efd11c00ea1a87e1c6f2ca Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Mon, 23 Feb 2026 17:35:14 +0100 Subject: [PATCH] feat: inject app name and version into potentially long during SQL queries for the SQL export Refs #1988 --- source/tabletools.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/tabletools.pas b/source/tabletools.pas index e0911b65..9c1dd59e 100644 --- a/source/tabletools.pas +++ b/source/tabletools.pas @@ -2063,7 +2063,7 @@ begin Data := DBObj.Connection.GetResults( DBObj.Connection.ApplyLimitClause( 'SELECT', - '* FROM '+DBObj.QuotedDbAndTableName + OrderBy, + '/* '+APPNAME+' '+MainForm.AppVersion+' */ * FROM '+DBObj.QuotedDbAndTableName + OrderBy, Limit, Offset) );