赞
踩
在mybatsi中,
${}会直接取值为string,直接写在SQL中。
#{}会表现为在SQL中一个占位符,然后取参数对应的值进行填充SQL
${}在动态解析的时候,会将我们传入的参数当做String字符串填充到我们的语句中,就会变成下面的语句
1.使用${}取值。会直接拼接到SQL中,而不会作为占位符
<!-- foreach实现动态update 这一节主要介绍当参数类型是 Map 时, foreach 如何实现动态 UPDATE 。 当参数是 Map 类型的时候, foreach 标签的工 ndex 属性值对应的不是索引值,而是 Map 中的 key,利用这个 key 可以实现动态 UPDATE 。 现在需要通过指定的列名和对应的值去更新数据 --> <update id="updateByMap"> update sys_user set <foreach collection="_parameter" item="val" index = "key" separator=","> ${key} = #{val} </foreach> where id = #{id} </update>
输出的SQL语句为:
==> Preparing: update sys_user set user_name = ? , id = ? where id = ?
==> Parameters: 1222(String), 1(Long), 1(Long)
使用#取值,这样就会报错。因为set 后面应该都是列名称,不应该带’’
<update id="updateByMap">
update sys_user
set
<foreach collection="_parameter" item="val" index = "key" separator=",">
#{key} = #{val}
</foreach>
where
id = #{id}
</update>
==> Preparing: update sys_user set ? = ? , ? = ? where id = ?
==> Parameters: user_name(String), 1222(String), id(String), 1(Long), 1(Long)
==> Preparing: update sys_user set ? = ? , ? = ? where id = ?
==> Parameters: user_name(String), 1222(String), id(String), 1(Long), 1(Long)
org.apache.ibatis.exceptions.PersistenceException:
### Error updating database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''user_name' = '1222'
,
'id' = 1
where
id = 1' at line 4
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。