码迷,mamicode.com
首页 > 数据库 > 详细

ibatis防止SQL注入的办法

时间:2016-02-18 11:43:51      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:

常见容易犯错的写法: 

select * from page_frame where title like ‘%$title$%‘ 


这样会引起SQL注入漏洞. 

解决方法: 

select * from page_frame where title like ‘%‘||#title#||‘%‘ 

注意:以上写法在oracle使用。 

在mysql中,用这个: select * from page_frame where title like CONCAT(‘%‘,#title#,‘%‘) 
在mssql中,用这个: select * from page_frame where ‘%‘+#name #+‘%  

ibatis防止SQL注入的办法

标签:

原文地址:http://www.cnblogs.com/zhw2016/p/5197466.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!