I am using UniTable & UniQuery to extract data from database. At my DB Table there is one field/column named as Description which contains string data type. But when I extracted data from Database table using UniQuery or UniTable it is returning only first 40 characters from Description field.
I also checked the fact using following code
Code: Select all
UniQuery1.First;
while Not UniQuery1.Eof do
begin
if Length(UniQuery1.FieldByName('description').AsString) > 40 then
ShowMessage(UniQuery1.FieldByName('description').AsString);
UniQuery1.Next;
end;
Any solution to this problem? What should be missing ?