Errors in DOA 3.4.6.4

fkemper

Member
Hi!
I found errors in DOA 3.4.6.4, function TOracleDataSet.GetUpdatingAlias,
what used in RefreshRecord.

1)For query

select a.*, a.rowid,
(select count(*)
from order_det b
where b.id_order = a.id_order)
from order a;

GetUpdatingAlias returns 'order_det',
but no 'order' !

2)For query

select *
from
(select count(*), id_order
from order_det
group by id_order) a,
order b
where b.id_order = a.id_order;

with inline subquery we will get ERROR.

F.Kemper
 
Back
Top