ADO .net in production environment

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

Guest

Hello:

I just started looking into ADO .net, and I wonder if it works well in production environment. One of the questions I have is working with multiple tables with ADO .net; that these tables are related. If there are update, insert, delete to the dataset returned from the database. When sending the modified data back to the database, is ADO .net automatically takes care of all the relationship and makes updates in all tables involved?

Thanks.

Quin
 
It's works great in production. check out the DataRelation object, once
that's in place and your adapters are setup correctly, it's all good.

Check out the ADO.NET
http://msdn.microsoft.com/vcsharp/using/understanding/data/default.aspx
Q said:
Hello:

I just started looking into ADO .net, and I wonder if it works well in
production environment. One of the questions I have is working with
multiple tables with ADO .net; that these tables are related. If there are
update, insert, delete to the dataset returned from the database. When
sending the modified data back to the database, is ADO .net automatically
takes care of all the relationship and makes updates in all tables involved?
 
Back
Top