Click here to Skip to main content
15,888,351 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to change utc Date in a normal Date Pin
John Torjo28-Jan-16 19:54
professionalJohn Torjo28-Jan-16 19:54 
AnswerRe: How to change utc Date in a normal Date Pin
Member 1191673528-Jan-16 20:41
Member 1191673528-Jan-16 20:41 
GeneralRe: How to change utc Date in a normal Date Pin
Richard MacCutchan28-Jan-16 22:38
mveRichard MacCutchan28-Jan-16 22:38 
AnswerRe: How to change utc Date in a normal Date Pin
jschell29-Jan-16 12:23
jschell29-Jan-16 12:23 
QuestionC# Application updated database. Pin
Ibrahim.elh28-Jan-16 0:07
Ibrahim.elh28-Jan-16 0:07 
AnswerRe: C# Application updated database. Pin
Garth J Lancaster28-Jan-16 0:42
professionalGarth J Lancaster28-Jan-16 0:42 
GeneralRe: C# Application updated database. Pin
Ibrahim.elh28-Jan-16 0:51
Ibrahim.elh28-Jan-16 0:51 
AnswerRe: C# Application updated database. Pin
OriginalGriff28-Jan-16 0:45
mveOriginalGriff28-Jan-16 0:45 
Depends on the content of the fields - you should never concatenate strings to build a SQL command. It leaves you wide open to accidental or deliberate SQL Injection attack which can destroy your entire database. Use Parametrized queries instead.
The chances are that will fix your problem.
And while you are at it, it's a bad idea to use INSERT INTO without listing the columns you want to insert into. If you don't, then it always tries to insert from left to right, which may not be the order if changes are made to your DB.
C#
command2.CommandText="INSERT INTO hisdet (etb, nobl, poidsb) VALUES (@E, @N, @P)";
command2.Parameters.AddWithValue("@E", etb);
command2.Parameters.AddWithValue("@N", nobl);
command2.Parameters.AddWithValue("@P", poidsb);
command2.ExecuteNonQuery();

If that doesn't fix it, then check your destination table and make sure you created all three columns.
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

GeneralRe: C# Application updated database. Pin
Ibrahim.elh28-Jan-16 1:13
Ibrahim.elh28-Jan-16 1:13 
GeneralRe: C# Application updated database. Pin
OriginalGriff28-Jan-16 1:24
mveOriginalGriff28-Jan-16 1:24 
GeneralRe: C# Application updated database. Pin
Richard Deeming28-Jan-16 1:29
mveRichard Deeming28-Jan-16 1:29 
GeneralRe: C# Application updated database. Pin
Ibrahim.elh28-Jan-16 1:36
Ibrahim.elh28-Jan-16 1:36 
GeneralRe: C# Application updated database. Pin
Richard Deeming28-Jan-16 1:39
mveRichard Deeming28-Jan-16 1:39 
GeneralRe: C# Application updated database. Pin
Ibrahim.elh28-Jan-16 1:57
Ibrahim.elh28-Jan-16 1:57 
GeneralRe: C# Application updated database. Pin
Richard Deeming28-Jan-16 2:06
mveRichard Deeming28-Jan-16 2:06 
GeneralRe: C# Application updated database. Pin
Ibrahim.elh28-Jan-16 2:29
Ibrahim.elh28-Jan-16 2:29 
GeneralRe: C# Application updated database. Pin
Richard Deeming28-Jan-16 2:34
mveRichard Deeming28-Jan-16 2:34 
GeneralRe: C# Application updated database. Pin
Ibrahim.elh28-Jan-16 3:19
Ibrahim.elh28-Jan-16 3:19 
GeneralRe: C# Application updated database. Pin
Ibrahim.elh28-Jan-16 4:15
Ibrahim.elh28-Jan-16 4:15 
GeneralRe: C# Application updated database. Pin
Richard Deeming28-Jan-16 4:21
mveRichard Deeming28-Jan-16 4:21 
GeneralRe: C# Application updated database. Pin
Ibrahim.elh28-Jan-16 4:34
Ibrahim.elh28-Jan-16 4:34 
GeneralRe: C# Application updated database. Pin
Ibrahim.elh28-Jan-16 5:41
Ibrahim.elh28-Jan-16 5:41 
Questionsetting multiple Locations in a bing Map Pin
yemen_mansour27-Jan-16 21:34
yemen_mansour27-Jan-16 21:34 
QuestionWindows 10 Mobile MDM - Device Provisioning Pin
gomes127-Jan-16 19:50
gomes127-Jan-16 19:50 
QuestionAdd WeakEvent to ObservableCollection using reflection Pin
Kenneth Haugland27-Jan-16 6:52
mvaKenneth Haugland27-Jan-16 6:52 

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.