Fix unquoted primary key columns in copy table dialog

This commit is contained in:
Ansgar Becker
2008-08-25 20:26:34 +00:00
parent 6daf4b3f76
commit b333c83c6e

View File

@ -242,7 +242,7 @@ begin
begin
if i > 0 then
keystr := keystr + ', ';
keystr := keystr + keylist[k].Columns[i];
keystr := keystr + mainform.mask(keylist[k].Columns[i]);
if keylist[k].SubParts[i] <> '' then
keystr := keystr + '(' + keylist[k].SubParts[i] + ')';
end;