Work with Relational Data

L

Leon

I know by using myDataSet.Relations.Add(), two related tables can be
joined together. Is there a way more than two tables can be joined
together?

Thank you for your help.
 
L

Leon

Greg said:
Define your example as this is not enough info.


For example, the follow

myDataSet.Relations.Add("CustOrders",myDataSet.Tables("Customers").Columns("CustomerID"),myDataSet.Tables("Orders").Columns("CustomerID"))

CustOrders is an relation between Customers and Orders. If I want to
create an relation not just join related two tables, join more than
two related tables, what are ways to do it?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top