* Map text field on ftMemo, since string has limited length. Fixes issue #40686

This commit is contained in:
Michaël Van Canneyt 2024-03-08 11:59:01 +01:00
parent 4c434ceb08
commit f0e34e8fab

View File

@ -549,7 +549,9 @@ begin
stInteger: FT:=ftLargeInt;
stFloat: FT:=ftFloat;
stBlob: FT:=ftBlob;
else FT:=ftString;
stText: FT:=ftMemo;
else
FT:=ftString;
end;
// handle some specials.
size1:=0;