1
vote
Is there some way to inject SQL even if the ‘ character is deleted?
Parameterized inline SQL or parameterized stored procedures is the best way to protect yourself. As others have pointed out, simply stripping/escaping the single quote character is not enough.
…
