I am using Delphi 6 Enterprise and I have two DataBases.
ONE.gdb which encapsulates a Table called TBLME
TWO.gdb which encapsulates a table called TBLYOU
I need to achieve the following using
Select *
from TBLYOU t1, TBLME t2,
where t1.Father = t2.Father
But both TIBDataSet (and TIBQuery) only permit that one has access to all the tables in one DataBase at a time.
Does anyone know a way whereby one can access the tables in two seperate DataBases together and at the same time?
Is there perhaps a fancy DataSet (something?) somewhere which will permit this? Or do I have to create my own? :-(
Thanks in advance.
ONE.gdb which encapsulates a Table called TBLME
TWO.gdb which encapsulates a table called TBLYOU
I need to achieve the following using
Select *
from TBLYOU t1, TBLME t2,
where t1.Father = t2.Father
But both TIBDataSet (and TIBQuery) only permit that one has access to all the tables in one DataBase at a time.
Does anyone know a way whereby one can access the tables in two seperate DataBases together and at the same time?
Is there perhaps a fancy DataSet (something?) somewhere which will permit this? Or do I have to create my own? :-(
Thanks in advance.