Click here to Skip to main content
16,005,222 members
Home / Discussions / C#
   

C#

 
GeneralRe: Update Command - Please Help Pin
Colin Angus Mackay12-Oct-04 3:43
Colin Angus Mackay12-Oct-04 3:43 
GeneralRe: Update Command - Please Help Pin
amdacc12-Oct-04 9:22
amdacc12-Oct-04 9:22 
GeneralRe: Update Command - Please Help Pin
Colin Angus Mackay12-Oct-04 11:02
Colin Angus Mackay12-Oct-04 11:02 
GeneralRe: Update Command - Please Help Pin
Heath Stewart12-Oct-04 7:36
protectorHeath Stewart12-Oct-04 7:36 
GeneralRe: Update Command - Please Help Pin
amdacc12-Oct-04 9:27
amdacc12-Oct-04 9:27 
GeneralRe: Update Command - Please Help Pin
Colin Angus Mackay12-Oct-04 10:47
Colin Angus Mackay12-Oct-04 10:47 
GeneralRe: Update Command - Please Help Pin
2Scoops13-Oct-04 22:57
2Scoops13-Oct-04 22:57 
GeneralRe: Update Command - Please Help Pin
Heath Stewart12-Oct-04 10:56
protectorHeath Stewart12-Oct-04 10:56 
As Colin said, under no circumstances should you ever use string concatenation. Read the .NET Framework SDK documentation that got installed with Visual Studio or the .NET Framework SDK, or that's available on http://msdn.microsoft.com/library[^]. It's important to write correct code, not just write whatever you can get to compile. SQL injection attacks are a very serious and easily exploitable threat, and since your compiled C# source is in Intermediate Language (not machine code) it's very easy to read. The .NET Framework SDK itself even includes a disassembler named ildasm.exe and for those of us that can read IL (or those that cop-out and use decompilers like the famous .NET Reflector) it would be easy to compromise your code.

This posting is provided "AS IS" with no warranties, and confers no rights.

Software Design Engineer
Developer Division Sustained Engineering
Microsoft

[My Articles] [My Blog]
GeneralCrystal Reports Formulas Pin
NormDroid12-Oct-04 1:38
professionalNormDroid12-Oct-04 1:38 
GeneralRe: Crystal Reports Formulas Pin
Heath Stewart12-Oct-04 7:19
protectorHeath Stewart12-Oct-04 7:19 
GeneralRe: Crystal Reports Formulas Pin
NormDroid12-Oct-04 20:36
professionalNormDroid12-Oct-04 20:36 
GeneralSelect Statement Pin
pat27088112-Oct-04 1:26
pat27088112-Oct-04 1:26 
GeneralRe: Select Statement Pin
Stanciu Vlad12-Oct-04 2:24
Stanciu Vlad12-Oct-04 2:24 
GeneralRe: Select Statement Pin
Heath Stewart12-Oct-04 7:13
protectorHeath Stewart12-Oct-04 7:13 
GeneralRe: Select Statement Pin
Mike Dimmick12-Oct-04 2:47
Mike Dimmick12-Oct-04 2:47 
GeneralRe: Select Statement Pin
pat27088112-Oct-04 3:14
pat27088112-Oct-04 3:14 
GeneralRe: Select Statement Pin
Colin Angus Mackay12-Oct-04 3:21
Colin Angus Mackay12-Oct-04 3:21 
GeneralRe: Select Statement Pin
pat27088112-Oct-04 3:45
pat27088112-Oct-04 3:45 
GeneralRe: Select Statement Pin
Heath Stewart12-Oct-04 7:17
protectorHeath Stewart12-Oct-04 7:17 
GeneralRe: Select Statement Pin
pat27088112-Oct-04 7:36
pat27088112-Oct-04 7:36 
GeneralRe: Select Statement Pin
Heath Stewart12-Oct-04 7:52
protectorHeath Stewart12-Oct-04 7:52 
GeneralRe: Select Statement Pin
pat27088112-Oct-04 8:43
pat27088112-Oct-04 8:43 
GeneralRe: Select Statement Pin
Dave Kreskowiak12-Oct-04 9:07
mveDave Kreskowiak12-Oct-04 9:07 
GeneralRe: Select Statement Pin
pat27088112-Oct-04 9:15
pat27088112-Oct-04 9:15 
GeneralRe: Select Statement Pin
Dave Kreskowiak12-Oct-04 10:16
mveDave Kreskowiak12-Oct-04 10:16 

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.