SaveToXML not possible with BLOB?

Discussion of open issues, suggestions and bugs regarding UniDAC (Universal Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
Moehre
Posts: 42
Joined: Fri 11 Nov 2005 11:37

SaveToXML not possible with BLOB?

Post by Moehre » Wed 22 Jul 2009 15:00

Deas sirs!

I am using UniDac 2.70.0.9 with success. As a backup operation I use the SaveToXML Method to save the data to a file. When I try this (Using ORACLE Provider) with a table having a blob field, I get the error "Data type is not supported". In your history of UniDac you write, that there was a bug with blob fields and SaveToXML, but it would have been fixed?!

Example code:

tblDaten.Tablename := 'TEST';
tblDaten.FilterSQL := 'ID =10';
tblDaten.Filtered := true;
tblDaten.Open;
tblDaten.SaveToXML(MyStream);

Table TEST =
ID NUMBER(4),
TEXT VARCHAR2(40),
DATA BLOB)

Greetz
Detlev Moehring

Moehre
Posts: 42
Joined: Fri 11 Nov 2005 11:37

Post by Moehre » Sun 30 Aug 2009 07:26

Pushing this up! Will this be fixed soon?

Plash
Devart Team
Posts: 2844
Joined: Wed 10 May 2006 07:09

Post by Plash » Wed 02 Sep 2009 08:22

We are working on the problem. You will be notified when we fix the problem.

Plash
Devart Team
Posts: 2844
Joined: Wed 10 May 2006 07:09

Post by Plash » Thu 03 Sep 2009 10:46

We have fixed this problem. The fix will be included in the next build of UniDAC.

Post Reply