码迷,mamicode.com
首页 > 其他好文 > 详细

mybatis 插入数据 在没有commit时 获取主键id

时间:2018-09-05 17:50:26      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:address   val   comment   rop   select   selectkey   numbers   span   tac   

  1.  
    <insert id="insert" parameterType="Mail" useGeneratedKeys="true" keyProperty="id_note">
  2.  
    insert into note(sender, from_address, subject, content, send_time)
  3.  
    values(#{sender}, #{fromAddress}, #{subject}, #{content}, #{sendTime})
  4.  
    <selectKey keyProperty="id_mail" resultType="int">
  5.  
    select LAST_INSERT_ID()
  6.  
    </selectKey>
  7.  
    </insert>
  8.  

 

  1. <!--这里可以获得刚插入表格的id,为后面attachment的插入提供了mailId字段-->
  2.  
    <select id="selectLastId" resultType="int">
  3.  
    select LAST_INSERT_ID()
  4.  
    </select>
  5.  

mybatis 插入数据 在没有commit时 获取主键id

标签:address   val   comment   rop   select   selectkey   numbers   span   tac   

原文地址:https://www.cnblogs.com/Superb1995/p/9591877.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!