Can DOA handle multidimensional data? (without master-detail for 2 DataSet)
for example this query (fantasy):
Example processing (my fantasy)
???
for example this query (fantasy):
SQL:
select ..., (select ... from table2 t2 where t2.id = t1.id ) as x, ... from table1 t1
Example processing (my fantasy)
Code:
DS1.First;
while not DS1.Eof do
begin
...
DS1.FieldByName('x').AsDataSet.First;
while not DS1.FieldByName('x').AsDataSet.Eof do
begin
...
DS1.FieldByName('x').AsDataSet.Next;
end;
DS1.Next;
end;
???
Last edited: