Error updating database. Cause java.sql.SQLException Incorrect integer value for column ‘id’ at row

Error updating database. Cause java.sql.SQLException Incorrect integer value for column ‘id’ at row,第1张

错误截图: 

错误代码:





    

    

    
        delete from student where id=#{id}
    


    
        insert into student values (default,#{name},#{age},#{phone})
    



    update student set name=#{name},age=#{age},phone=#{phone} where id=#{id}


错误原因:

数据库中字段的位置,和mabatis中写的位置不一样,修改数据库中的数据或者mabatis中的数据就可以了。出现这种错误提示的原因无外乎mabatis中的数据和数据库中的数据不匹配,大家仔细检查就可以了。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/725572.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-26
下一篇 2022-04-26

发表评论

登录后才能评论

评论列表(0条)

保存