vote up 0 vote down star

Hi,

How do I get all rows from ITEM table, which are children of a parent ITEM table row, where relationship is stored separately? How can I do a join to do this? "get all rows from ITEM table, which are children of this specific ITEM table row, all child items from this parent item, where relationship is stored in separate RELATIONSHIP table"

So given there is an ITEMS and a RELATIONSHIPS table. The key columns are:

ITEMS
* ID
* << other columns>>

RELATIONSHIPS
* PARENT_ID
* CHILD_ID

I'm trying to understand whether the DataSet / DataRelation approach could somehow map these relations. For example if I basically want a way to implement the request "Give me all children ITEMS in a DataRow[] form, given a parent ITEM DataRow, based on the RELATIONSHIPS table", is there a way to do this using a DataRelation? Of if not what would be the easiest way to do this using the DataSet approach?

EDIT: That is, assuming I am using a DataSet, and within the DataSet I have one DataTable for each of the physical database tables I described above.

Thanks

flag

68% accept rate
wow dude shorten the title – hasen j Nov 3 at 7:33
@Greg - Please edit and copy the title under "Hi," and before "DataSet Question..." it hard to read what you are asking about. Thanks. – Cape Cod Gunny Nov 4 at 1:50
@Cape Cod Gunny - done – Greg Nov 4 at 21:30
@Cape Cod Gunny - done – Greg Nov 4 at 21:31
@Greg - In your two table example am I to assume that ID in the RELATIONSHIPS table is a foreign key to ID in the ITEMS table? – Cape Cod Gunny Nov 5 at 0:06
show 3 more comments

1 Answer

vote up 0 vote down

Top of my head, you're looking for roughly this solution (and I'm not entirely certain if I understand your datastructure correctly):

SELECT child.othercolumns
FROM items AS child, relationships AS r, items AS parent
WHERE r.parent_id=parent.id AND r.child_id=child.id
link|flag
this would be the SQL I assume? That is, I meant my question to be how to setup the DataSet (with a DataTable within for each physical database table, and some DataRelations) to then be able to carry out the task within the DataSet world? – Greg Nov 3 at 10:09
Or perhaps you were suggesting rather than using DataSet/DataRelations it's easier to just populate a specific DataTable just with the required rows using the SQL you suggested? – Greg Nov 3 at 10:15
With DataSet, did you mean the .NET class ? Your question really left out relevant details. – MSalters Nov 3 at 10:35
Sorry-yes. An ADO.Net question effectively – Greg Nov 3 at 18:39
Ok, tagged your question. – MSalters Nov 4 at 10:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.