Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Create a Datarelation in a dataset

Status
Not open for further replies.

Razzle00

Programmer
Sep 27, 2006
20
US
Hi,

How do you create a many-to-one or one-to-many relationship in a dataset. I have this code

Code:
        ' Get the DataColumn objects from two DataTable objects in a DataSet.
        Dim parentCol As DataColumn
        Dim childCol As DataColumn
        ' Code to get the DataSet columns.
        parentCol = ds.Tables("history").Columns("code")
        childCol = ds.Tables("code").Columns("code")
        ' Create DataRelation.
        Dim relHistoryCode As DataRelation
        relHistoryCode = New DataRelation("HistoryCode", parentCol, childCol)
        ' Add the relation to the DataSet.
        ds.Relations.Add(relHistoryCode)

but is only works for unique keys in both tables. But I need a many-to one relationship here. The history table has many code values that are the same as to the code table has 1 code value that is unique.

Thanks
 
Disregard this post. I have the solution. The code file has the unique key and needed to be the parent column in the relation.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top