Link to home
Start Free TrialLog in
Avatar of RayT
RayTFlag for United States of America

asked on

Update dataset with multiple tables

I'm using Visual Studio .NET and an Access database.  I have a dataset which is derived from multiple tables (Join).  How do I update the dataset?  I have a grid object that is unbounded to the dataset and I need a way to update the grid information.

In short, how dow you perform an insert, an update and a delete on a dataset derived from multiple tables?
ASKER CERTIFIED SOLUTION
Avatar of solublefish
solublefish

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of RayT

ASKER

This example is showing the resultset containing information from a single table

SELECT * FROM Item JOIN Names ON Item.ItemID = Names.ItemID

How would you dp this if the SQL looked something like this?

SELECT Item.*, Name.* FROM Item JOIN Names ON Item.ItemID = Names.ItemID