From a487d94bad0c4dca77f3ba673bf8038b5451f3fb Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Sat, 7 Nov 2015 12:44:21 +0000 Subject: [PATCH] Fix endless loop in retrieval of column comments on MSSQL. See http://www.heidisql.com/forum.php?t=19576#p19790 --- source/dbconnection.pas | 1 + 1 file changed, 1 insertion(+) diff --git a/source/dbconnection.pas b/source/dbconnection.pas index 05e8b095..e23ff83f 100644 --- a/source/dbconnection.pas +++ b/source/dbconnection.pas @@ -2734,6 +2734,7 @@ begin Result := Result + ' COMMENT ' + EscapeString(Comments.Col('comment')); Break; end; + Comments.Next; end; end;