Click here to Skip to main content
15,917,709 members
Home / Discussions / C#
   

C#

 
QuestionProject Architecture Pin
JammoD8712-Mar-15 21:57
JammoD8712-Mar-15 21:57 
AnswerRe: Project Architecture Pin
Eddy Vluggen13-Mar-15 10:54
professionalEddy Vluggen13-Mar-15 10:54 
GeneralRe: Project Architecture Pin
JammoD8715-Mar-15 4:21
JammoD8715-Mar-15 4:21 
AnswerRe: Project Architecture Pin
Subramanyam Shankar17-Mar-15 1:39
professionalSubramanyam Shankar17-Mar-15 1:39 
QuestionHow to use GIT with .Net Pin
AmbiguousName12-Mar-15 3:59
AmbiguousName12-Mar-15 3:59 
AnswerRe: How to use GIT with .Net Pin
Richard Deeming12-Mar-15 4:09
mveRichard Deeming12-Mar-15 4:09 
Questionc sharp user control Pin
Sarita S12-Mar-15 3:32
Sarita S12-Mar-15 3:32 
QuestionRe: c sharp user control Pin
ZurdoDev12-Mar-15 4:38
professionalZurdoDev12-Mar-15 4:38 
AnswerRe: c sharp user control Pin
Richard Givis24-Mar-15 12:05
Richard Givis24-Mar-15 12:05 
AnswerRe: c sharp user control Pin
Dave Kreskowiak12-Mar-15 5:21
mveDave Kreskowiak12-Mar-15 5:21 
SuggestionRe: c sharp user control Pin
Matt T Heffron12-Mar-15 10:20
professionalMatt T Heffron12-Mar-15 10:20 
AnswerRe: c sharp user control Pin
BillWoodruff13-Mar-15 4:38
professionalBillWoodruff13-Mar-15 4:38 
Questionediting GPO using C# Pin
vikramlinux12-Mar-15 2:44
vikramlinux12-Mar-15 2:44 
AnswerRe: editing GPO using C# Pin
Richard Deeming12-Mar-15 3:07
mveRichard Deeming12-Mar-15 3:07 
Questionloop an existenting Labels from my aspx page in my cs page Pin
Member 1151896212-Mar-15 0:01
Member 1151896212-Mar-15 0:01 
SuggestionRe: loop an existenting Labels from my aspx page in my cs page Pin
Richard MacCutchan12-Mar-15 0:09
mveRichard MacCutchan12-Mar-15 0:09 
AnswerRe: loop an existenting Labels from my aspx page in my cs page Pin
F-ES Sitecore12-Mar-15 1:34
professionalF-ES Sitecore12-Mar-15 1:34 
GeneralRe: loop an existenting Labels from my aspx page in my cs page Pin
Member 1151896215-Mar-15 22:44
Member 1151896215-Mar-15 22:44 
GeneralRe: loop an existenting Labels from my aspx page in my cs page Pin
Member 1151896215-Mar-15 22:51
Member 1151896215-Mar-15 22:51 
QuestionQuickly find the information on the GridView ? Pin
Member 245846711-Mar-15 19:59
Member 245846711-Mar-15 19:59 
AnswerRe: Quickly find the information on the GridView ? Pin
OriginalGriff12-Mar-15 0:02
mveOriginalGriff12-Mar-15 0:02 
SuggestionRe: Quickly find the information on the GridView ? Pin
Matt T Heffron12-Mar-15 10:24
professionalMatt T Heffron12-Mar-15 10:24 
QuestionHow to Save changes in Dataset back to my Database Pin
David_Pollard11-Mar-15 19:24
David_Pollard11-Mar-15 19:24 
SuggestionRe: How to Save changes in Dataset back to my Database Pin
Matt T Heffron12-Mar-15 10:25
professionalMatt T Heffron12-Mar-15 10:25 
GeneralRe: How to Save changes in Dataset back to my Database Pin
David_Pollard12-Mar-15 12:36
David_Pollard12-Mar-15 12:36 
Hello Again,
After a good nights sleep the answer to my initial problem was obvious.
As it is SQL the only answer can be parameters.

So within the Query Builder I inserted Paramaters in the format of @FieldName in the "New Value" column.

Now my SQL code looks like this.
SQL
UPDATE       ExecuteItem
SET                iOrderBy = @iOrderBy, sDescription = @sDescription, bContinueOnFailure = @bContinueOnFailure, dLastRunTime = @dLastRunTime, 
                         bLastRunStatus = @bLastRunStatus, sSQLCode = @sSQLCode, bActive = @bActive


Now when I execute my program and change one row in the Datagridview it updates every row in the database with the same value.

This now seems like a question about Visual Studio more than anything else. I'll take my question else where if you still think it isn't appropriate here.

Thanks
David.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.