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.
…
0
votes
How to convert DateTime to VarChar
You don't say what language but I am assuming C#/.NET because it has a native DateTime data type. In that case just convert it using the ToString method and use a format specifier such as:
…
