Mybatis(ibatis)
maihoney
这个作者很懒,什么都没留下…
展开
-
mybatis模糊查询
网上关于mybatis模糊查询的很多人不知道,好像也没人说,所以我就把我关于mybatis模糊查询的用法写出来供有需要的人参考一下,希望对有需要的人能有所帮助! select * from Student s where s.name like "%"#{name}"%"; ...原创 2011-05-12 09:50:32 · 82 阅读 · 0 评论 -
模糊查询 防止SQL注入
为了防止SQL注入,iBatis模糊查询时也要避免使用$$来进行传值。下面是三个不同数据库的ibatis的模糊查询传值。 mysql: select * from stu where name like concat('%',#name #,'%') oracle: select * from stu where name like '%'||#name #||'%' SQL ...原创 2011-06-22 11:56:36 · 902 阅读 · 0 评论