about XMLData fieldtype and value
Posted: Wed 19 Dec 2007 05:24
Hi support.
It's assumed to include the following data on the table.
create table TABLE1(
KEY1 VARCHAR2(3) NOT NULL,
NUMDATA1 NUMBER(7,3)
NUMDATA2 NUMBER(7,3)
);
/
select * from TABLE1;
KEY1 NUMDATA1 NUMDATA2
---- -------- --------
001 0.7 0.35
002 0.7 0.35
When I access this data in ODAC, and XML is acquired in TClientDataSet.XMLData, it'll be as follows.
When it's operated in dbExpress equally, a result changes.
NUMDATA1 will be the strange value and be a problem at the time of use of data.
Why is this?
Please tell me whether there isn't a way to avoid.
Thanks
It's assumed to include the following data on the table.
create table TABLE1(
KEY1 VARCHAR2(3) NOT NULL,
NUMDATA1 NUMBER(7,3)
NUMDATA2 NUMBER(7,3)
);
/
select * from TABLE1;
KEY1 NUMDATA1 NUMDATA2
---- -------- --------
001 0.7 0.35
002 0.7 0.35
When I access this data in ODAC, and XML is acquired in TClientDataSet.XMLData, it'll be as follows.
When it's operated in dbExpress equally, a result changes.
NUMDATA1 will be the strange value and be a problem at the time of use of data.
Why is this?
Please tell me whether there isn't a way to avoid.
Thanks