如何防止sql注入

// 正常情况下
select * from users where username='李四' and password ='123'
// 使用sql注入,通过【'--】使后面的字段被注释,从而获取用户信息
select * from users where username='李四'  -- '  and password =''123'

// 使用escape函数
username = escape(username)
password = escape(password)
上一篇:软考往年的合格成绩都是45,今年会不会有变


下一篇:Leetcode - 60. 排列序列