zimcoder Level: VB Lord

 Registered: 27-10-2003 Posts: 225
|
Re: how cross table insert or update can be done by ado.net ?
Create you queries using the DataAdapter configuration wizard by dragging an adapter onto your web form in VS.NET.
Four command objects will be created. Call the update method of the dataadapter on the changes stored in your dataset and the update will go through. It is actually snappy using the wizard
You can find some solutions Here
And @ this website
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vboridataupdatesinvisualstudionet.asp
____________________________
BrainBench ADO.NET and ASP.NET Certified Developer
 
|