-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
For Unicode versions of Delphi, ftGUID fields truncate data when the source
field is a TGUID field. (Effectively a string field).
I've found a problem where for field types of ftGUID results will be
incomplete. (Values are clipped).
A work around to the problem is to ensure that the source datasets have no
TGUID fields. (Use TStringFields instead, or use CAST in queries)
however the fix appears to be to search and replace all instances of
in [ftString,
to
in [ftString, ftGUID,
within the xquery.pas file
Which appears to resolve the issue as well. Can this be updated in the next
release please?
Original issue reported on code.google.com by wsdah...@gmail.com on 1 Oct 2014 at 5:41