Page 1 of 1

Blob type not supported in 4.3?

Posted: Fri 27 Jan 2006 02:02
by CHIN
Last version (4.0) running below code all fine, but i update myDAC to 4.3,
data type is not supported.

code:
mycmUpdate.ParamByName('LocationMap').LoadFromStream(PmsLocationMap, ftBlob);

Posted: Tue 31 Jan 2006 09:49
by Ikar
Thank you for information.
We reproduced your problem and fixed it. This fix will be included in the next MyDAC build. It will be available in about one month. Please watch for announcements at the forum.

As temporary solution use set Param.DataType as following:

Code: Select all

mycmUpdate.ParamByName('LocationMap').DataType := ftBlob;
mycmUpdate.ParamByName('LocationMap').LoadFromStream(PmsLocationMap, ftBlob);