Fix offset in charset table, always set to 0. See http://www.heidisql.com/forum.php?t=4638

This commit is contained in:
Ansgar Becker
2009-12-05 16:03:07 +00:00
parent 4b01d83ed7
commit 37f83b6af8

View File

@ -719,8 +719,6 @@ function TMySQLConnection.GetCharsetTable: TMySQLQuery;
begin
if (not Assigned(FCharsetTable)) and (ServerVersionInt >= 40100) then
FCharsetTable := GetResults('SHOW CHARSET');
if Assigned(FCharsetTable) then
FCharsetTable.First;
Result := FCharsetTable;
end;