动力节点首页 全国咨询热线:400-8080-105

绑定手机号,登录
手机号

验证码

微信登录
手机号登录
手机号

验证码

微信登录与注册
微信扫码登录与注册

扫码关注微信公众号完成登录与注册
手机号登录
首页 > 文章

MyBatis更新操作update

07-15 11:15 830浏览
举报 T字号
  • 大字
  • 中字
  • 小字

关于mybatis中update操作遇到了问题解决; 看代码:

测试类:

@Test
    public void updatwUser () throws IOException {
        InputStream is = Resources.getResourceAsStream("SqlMapConfig.xml");
        //建立会话工厂
        SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(is);
        SqlSession sqlSession = sqlSessionFactory.openSession();
        UserMapper mapper = sqlSession.getMapper(UserMapper.class);
         mapper.updatwUser("帅帅","帅帅",1);
         sqlSession.commit();
        sqlSession.close();
    }

Mapper接口:

 void updatwUser ( String j, String j1,int i);

Mapper.xml配置:

<update id="updatwUser">
        update user
        <set>
                  #             后面加,重点
            <if test="param1!=null">name=#{param1},</if>
            <if test="param2!=null">password=#{param2},</if>
        </set>
        where id=#{param3}
    </update>

重点:一定要在name=#{param1},后面加上那个,password=#{param2},建议最后一个参数后也加,不加也行,mybatis会自动去掉最后一个, ->>>>>>一定加 ","

不加的话会报错:

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 'password=‘帅帅’

  where id=1' at line 4

The error may involve defaultParameterMap

The error occurred while setting parameters

SQL: update user SET name=? password=? where id=?

动力节点在线课程涵盖零基础入门,高级进阶,在职提升三大主力内容,覆盖Java从入门到就业提升的全体系学习内容。全部Java视频教程免费观看,相关学习资料免费下载!对于火爆技术,每周一定时更新!如果想了解更多相关技术,可以到动力节点在线免费观看MyBatis视频教程学习哦!

0人推荐
共同学习,写下你的评论
0条评论
代码小兵652
程序员代码小兵652

113篇文章贡献392215字

相关课程 更多>

作者相关文章更多>

推荐相关文章更多>

Java面试题及答案整理

提枪策马乘胜追击04-21 20:01

Spring常见面试题

代码小兵92504-17 16:07

Java零基础实战项目——五子棋

代码小兵98804-25 13:57

Java string类详解

杨晶珍05-11 14:54

6道经典算法面试题

杨晶珍05-12 16:39

发评论

举报

0/150

取消