What do I need to escape when sending a query?

前端 未结 11 1302
执念已碎
执念已碎 2021-01-07 18:01

When you execute a SQL query, you have to clean your strings or users can execute malicious SQL on your website.

I usually just have a function escape_string(blah),

11条回答
  •  温柔的废话
    2021-01-07 18:49

    Which language are using? It seems like pretty much all of them have built-in SQL escape functions that would be better to use.

    For example, PHP has mysql_real_escape_string and addslashes.

提交回复
热议问题