I have a text field and its breaking my sql statement. How do i escape all the chars in that field? I am using sqlite with http://sqlite.phxsoftware.com/ in C#
|
|
You should be using a parameter as in:
Using a parametrised SQL will escape all input values and help protect you from SQL injection attacks. |
||||||||
|
|
|
You can also replace all single quote delimiters with doubt single quotes (not ").
|
||
