Ibatis防止sql注入

为了防止SQL注入,iBatis模糊查询时也要避免使用$$来进行传值。下面是三个不一样数据库的ibatis的模糊查询传值。  mysql: select * from stu where name like concat('%',#name #,'%')  oracle: select * from stu where name like '%'||#name #||'%'  SQL  Serve
相关文章
相关标签/搜索