当前位置: 代码迷 >> SQL >> abatis防止sql攻打
  详细解决方案

abatis防止sql攻打

热度:73   发布时间:2016-05-05 13:19:33.0
abatis防止sql攻击
为了防止SQL注入,iBatis模糊查询时也要避免使用$$来进行传值。下面是三个不同数据库的ibatis的模糊查询传值。


# mysql: select * from stu where name like concat('%',#name #,'%') 

# oracle: select * from stu where name like '%'||#name #||'%'

# SQL Server:select * from stu where name like '%'+#name #+'%
  相关解决方案