mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-14 01:56:36 +08:00
Add missing comma at first exported cell. Fixes issue #1422
This commit is contained in:
@ -708,7 +708,7 @@ begin
|
||||
Query := Mainform.Connection.GetResults( 'SHOW FIELDS FROM ' + sourceMask(checkListTables.Items[i]));
|
||||
for k:=0 to Query.RecordCount-1 do
|
||||
begin
|
||||
if k>1 then
|
||||
if k>0 then
|
||||
columnnames := columnnames + ', ';
|
||||
columnnames := columnnames + destMask(Query.Col(0));
|
||||
Query.Next;
|
||||
|
Reference in New Issue
Block a user