VS 2010 SQL Update for SQL Statement
Posted
by
Mike Tucker
on Stack Overflow
See other posts from Stack Overflow
or by Mike Tucker
Published on 2012-10-26T22:37:10Z
Indexed on
2012/10/26
23:00 UTC
Read the original article
Hit count: 148
Please bear with me as I'm just beginning to learn this stuff.
I have a VS 2010 Web project up and I'm trying to understand how I can make a custom UpdateCommand
(Because I chose to write my own SQL statement, I do not have the option for VS 2010 to auto generate an update command for me.) Problem is: I don't know what the UpdateCommand
should look like. Here is my Select:
SELECT * FROM Dbo.MainAsset, dbo.Model, dbo.Hardware WHERE MainAsset.device = Hardware.DeviceID AND MainAsset.model = Model.DeviceID
Which, VS 2010 turns into:
SELECT MainAsset.pk, MainAsset.img, MainAsset.device, MainAsset.model, MainAsset.os, MainAsset.asset, MainAsset.serial, MainAsset.inyear, MainAsset.expyear, MainAsset.site, MainAsset.room, MainAsset.teacher, MainAsset.FirstName, MainAsset.LastName, MainAsset.Notes, MainAsset.Dept, MainAsset.AccountingCode, Model.Model AS Hardware, Model.pk AS Model, Model.DeviceID, Hardware.Computer, Hardware.pk AS Expr3, Hardware.DeviceID AS Expr4 FROM MainAsset INNER JOIN Hardware ON MainAsset.device = Hardware.DeviceID INNER JOIN Model ON MainAsset.model = Model.DeviceID
How would I approach updating one column, say "MainAsset.site" if that's changed in the Gridview DDL? Any help constructive help would be appreciated. Thank you.
© Stack Overflow or respective owner