UniDAC MySQL - FMX OsX - Compression function not linked
as object: if Compress=True in MAC Osx does not work.
all ok in win32
best regards
UniDAC MySQL - FMX OsX - Compression function not linked
i found solution by myself:
uses MemUtils, Zlib;
On TMainForm.Create ADD :
self.UniConnection1.SpecificOptions.Values['Compress']:='True';
{$IFDEF MACOS}
MemUtils.CompressProc:[email protected];
MemUtils.UncompressProc:[email protected];
{$ENDIF MACOS}
bye!
uses MemUtils, Zlib;
On TMainForm.Create ADD :
self.UniConnection1.SpecificOptions.Values['Compress']:='True';
{$IFDEF MACOS}
MemUtils.CompressProc:[email protected];
MemUtils.UncompressProc:[email protected];
{$ENDIF MACOS}
bye!
-
AndreyZ
-
AndreyZ
-
AndreyZ
To deploy your applications that use UniDAC to your customers, you should use UniDAC Licensed version, but not Trial. Otherwise, your customers will encounter UniDAC trial restrictions (I described them to you here: http://www.devart.com/forums/viewtopic.php?t=23694 ). Also, you will have to supply UniDAC BPL files with your application. You can find a note about this in the "Deployment" article of the UniDAC documentation.