I use a TOraQuery (5.50) "only" as a layer between my own db access components and an Oracle database. Sometimes I have to adjust the FieldType to be compatible with other database backends. But there's one problem left: I cannot distinguish between an INTEGER declared column and for instance a SUM of some numeric column. Both are converted to float fielddefs with a precision/scale of (38, 0). But I would like to have the INTEGER column be converted to an IntegerField whereas the aggregation should be converted to a FloatField.
BTW, I think there must have been some changes between ODAC 3.50 and 5.50 concerning this subject. Because I didn't have any problems with 3.50.
Any ideas?
--Heiko