K
Kai =?iso-8859-1?Q?Br=E4utigam?=
Hi,
is there any way to join two tables in a DataSet? What I need is just like
a JOIN with two tables in a real Database like:
SELECT cu.CustomerID, or.OrdersID
FROM Customers cu, Orders or
WHERE cu.CustomerID = or.CustomerID
or
SELECT cu.CustomerID, or.OrdersID
FROM Customers cu
INNER JOIN Orders or
ON cu.CustomerID = or.CustomerID
I've found the QueryADataSet from Peersoft, which works fine as far as I
can see. Anyone got some experiences with that library?
Maybe any other ideas to solve that problem?
Thanks,
- Kai
is there any way to join two tables in a DataSet? What I need is just like
a JOIN with two tables in a real Database like:
SELECT cu.CustomerID, or.OrdersID
FROM Customers cu, Orders or
WHERE cu.CustomerID = or.CustomerID
or
SELECT cu.CustomerID, or.OrdersID
FROM Customers cu
INNER JOIN Orders or
ON cu.CustomerID = or.CustomerID
I've found the QueryADataSet from Peersoft, which works fine as far as I
can see. Anyone got some experiences with that library?
Maybe any other ideas to solve that problem?
Thanks,
- Kai