Can I protect against SQL injection by escaping single-quote and surrounding user input with single-quotes?

后端 未结 18 2445
忘了有多久
忘了有多久 2020-11-22 14:03

I realize that parameterized SQL queries is the optimal way to sanitize user input when building queries that contain user input, but I\'m wondering what is wrong with takin

18条回答
  •  一个人的身影
    2020-11-22 14:38

    There are two ways to do it, no exceptions, to be safe from SQL-injections; prepared statements or prameterized stored procedures.

提交回复
热议问题