mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-26 20:00:16 +08:00
Fix a follow up error of previous commit - need to call CharsetTable.First now.
This commit is contained in:
@ -729,11 +729,14 @@ var
|
||||
begin
|
||||
c := CharsetTable;
|
||||
Result := TStringList.Create;
|
||||
if Assigned(c) then while not c.Eof do begin
|
||||
if Assigned(c) then begin
|
||||
c.First;
|
||||
while not c.Eof do begin
|
||||
Result.Add(c.Col('Description') + ' (' + c.Col('Charset') + ')');
|
||||
c.Next;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
||||
|
||||
function TMySQLConnection.GetInformationSchemaObjects: TWideStringList;
|
||||
|
Reference in New Issue
Block a user