You are not logged in.
Pages: 1
Hi,
I'm trying to use a TRawByteStringArray Field in a TSQLRecord Object.
Under Delphi XE3 (64 bit platform for compilation) compilater report this exception :
E2100 : Data type too large: exceeds 2 GB
The only way I have found is to change TRawByteStringArray declaration from static array to dynamic array in Syncommons.
// TRawByteStringArray = array[0..MaxInt div SizeOf(RawByteString)-1] of RawByteString;
TRawByteStringArray = array of RawByteString;
What's your opinion about this modification ?
thank's in advance.
Offline
Next time, I will try to sign my neurons.
Thank's a lot
Offline
Pages: 1