I'm writing program that require knowledge about actual datatypes of fields in select statement. For example i have table:
create table Test1(DocNumber NUMBER(12));
When i do select from this table
select DocNumber from Test1;
... i receive field of type TFloatField. Obviously it should be TBCD or TFMTBCD but it is not. How to enable BCD support in DOA?
create table Test1(DocNumber NUMBER(12));
When i do select from this table
select DocNumber from Test1;
... i receive field of type TFloatField. Obviously it should be TBCD or TFMTBCD but it is not. How to enable BCD support in DOA?