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

(cherry picked from commit f0e34e8fab)
This commit is contained in:
Michaël Van Canneyt 2024-03-08 11:59:01 +01:00 committed by marcoonthegit
parent fdc63b3918
commit 3f8bf07d54

View File

@ -537,7 +537,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;