DataSets and DdataTtable question?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have two DataTables in a DataSet. I would like to create a third DataTable in the same DataSet that is a Join of the two original DataTables. The two tables are extracted from two different database on two seperate servers, so doing it at time of creation is not an option. How do you create a third DataTable in a DataSet that is a Join of the two Previous DataTables

Please reverse the email address when responding gro.asumsa@iksworuke
 
Add a DataRelation to your DataSet. No need to create an extra table.

-Oleg.

gro.asumsa@iksworuke said:
I have two DataTables in a DataSet. I would like to create a third
DataTable in the same DataSet that is a Join of the two original DataTables.
The two tables are extracted from two different database on two seperate
servers, so doing it at time of creation is not an option. How do you
create a third DataTable in a DataSet that is a Join of the two Previous
DataTables?
 
Back
Top