I was told that if using SqlCommand in C# and if you were to add parameters to that command, that it will add security since it will protect against Sql Injection. I was wondering if this is in fact true. If so, how can it stop Sql Injection because it is my understanding that when using parameters, it just inserts a string at a point in the Sql command. So that string could be anything, making Sql Injection possible, correct?
|
feedback
|
|
It is not a simple replace. The framework will escape the values (especially strings), so that it is impossible for a value to be executed as code. | |||||||||
feedback
|