Click here to Skip to main content
15,920,005 members
Home / Discussions / C#
   

C#

 
AnswerRe: how can i use delegate to output several param in multi-thread? Pin
OriginalGriff21-Dec-15 3:53
mveOriginalGriff21-Dec-15 3:53 
GeneralRe: how can i use delegate to output several param in multi-thread? Pin
smallkubi21-Dec-15 4:44
smallkubi21-Dec-15 4:44 
AnswerRe: how can i use delegate to output several param in multi-thread? Pin
Eddy Vluggen21-Dec-15 6:32
professionalEddy Vluggen21-Dec-15 6:32 
GeneralRe: how can i use delegate to output several param in multi-thread? Pin
smallkubi21-Dec-15 15:13
smallkubi21-Dec-15 15:13 
GeneralRe: how can i use delegate to output several param in multi-thread? Pin
Eddy Vluggen22-Dec-15 0:18
professionalEddy Vluggen22-Dec-15 0:18 
AnswerRe: how can i use delegate to output several param in multi-thread? Pin
BillWoodruff21-Dec-15 18:20
professionalBillWoodruff21-Dec-15 18:20 
QuestionOPC / Rockwell for automation problem Pin
Roberto64_Ge21-Dec-15 0:07
Roberto64_Ge21-Dec-15 0:07 
Questionc# classes methods Pin
Member 1221945620-Dec-15 14:55
Member 1221945620-Dec-15 14:55 
AnswerRe: c# classes methods Pin
User 418025420-Dec-15 15:13
User 418025420-Dec-15 15:13 
GeneralRe: c# classes methods Pin
Member 1221945620-Dec-15 15:17
Member 1221945620-Dec-15 15:17 
GeneralRe: c# classes methods Pin
OriginalGriff20-Dec-15 19:53
mveOriginalGriff20-Dec-15 19:53 
AnswerRe: c# classes methods Pin
OriginalGriff20-Dec-15 19:58
mveOriginalGriff20-Dec-15 19:58 
AnswerRe: c# classes methods Pin
BillWoodruff20-Dec-15 23:42
professionalBillWoodruff20-Dec-15 23:42 
QuestionIncorrect syntax near ',' Pin
Member 1144944719-Dec-15 5:00
Member 1144944719-Dec-15 5:00 
AnswerRe: Incorrect syntax near ',' Pin
Dave Kreskowiak19-Dec-15 5:07
mveDave Kreskowiak19-Dec-15 5:07 
GeneralRe: Incorrect syntax near ',' Pin
Member 1144944719-Dec-15 10:18
Member 1144944719-Dec-15 10:18 
GeneralRe: Incorrect syntax near ',' Pin
Dave Kreskowiak19-Dec-15 11:48
mveDave Kreskowiak19-Dec-15 11:48 
GeneralRe: Incorrect syntax near ',' Pin
Foothill21-Dec-15 6:00
professionalFoothill21-Dec-15 6:00 
Dave is correct that is not the correct way to build a parameterized query in C#. However, if you want to know where your SQL statement was getting broken.

SQL
values (" + NIF + "', " + loja + "," + bloqueador + ",'" + DataFim + "','" + lastupdate + "','" + Nome + "')


When this query is parsed it will become

SQL
values(NIF',Loja,bloqueador,'DataFim','latupdate','Nome')


Can you spot the error?
if (Object.DividedByZero == true) { Universe.Implode(); }

GeneralRe: Incorrect syntax near ',' Pin
Dave Kreskowiak21-Dec-15 7:09
mveDave Kreskowiak21-Dec-15 7:09 
QuestionHow can I include house address finder in my application? Pin
naouf1019-Dec-15 3:21
naouf1019-Dec-15 3:21 
AnswerRe: How can I include house address finder in my application? Pin
OriginalGriff19-Dec-15 4:08
mveOriginalGriff19-Dec-15 4:08 
GeneralRe: How can I include house address finder in my application? Pin
Mycroft Holmes20-Dec-15 12:01
professionalMycroft Holmes20-Dec-15 12:01 
AnswerRe: How can I include house address finder in my application? Pin
Gerry Schmitz19-Dec-15 8:59
mveGerry Schmitz19-Dec-15 8:59 
GeneralRe: How can I include house address finder in my application? Pin
naouf1019-Dec-15 11:09
naouf1019-Dec-15 11:09 
GeneralRe: How can I include house address finder in my application? Pin
Gerry Schmitz19-Dec-15 12:01
mveGerry Schmitz19-Dec-15 12:01 

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.