mybaties

表:create table play(iid int(10) not null primary key auto_increment,typeId int(3));

 

Play.java:

 

public class Play{

 

private Integer iID;

 

        private Integer typeID;

 

...setter and getter省略... 

 

 

play-mapper.xml:

 

<mapper namespace="PlayDAO">

 

<resultMap id="BaseResultMap" type="Play">

 

<id column="iid" property="iID" jdbcType="INTEGER" />

 

<result column="typeId" property="typeID" jdbcType="INTEGER" /> 

 

</resultMap> 

 

<insert id="insert" parameterType="Play">

 

insert into play(typeId) values (#{typeID,jdbcType=INTEGER})

 

<selectKey keyProperty="iID" resultType="int" order="AFTER">

 

select LAST_INSERT_ID() 

 

</selectKey> 

 

</insert> 

 

</mapper> 

 

说明:

 

1、 order="AFTER" 表示selectKey的动作在insert into...执行之后执行。

 

2、为了说明问题,本例特别让java类中的属性名与xml配置文件中的column名不同,需要特别注意 selectKey的keyProperty属性必须是java类中的属性名。

 

 

 

补充:

 

在Oracle中的用法:先为主键创建一个序列 create sequence Play_Sequence increment by 1 start with 1 nomaxvalue;

 

<insert id="insert" parameterType="Play"> 

      <selectKey  keyProperty="iID" resultType="int" order="BEFORE" >

 

         select  Play_Sequence.nextval from dual

 

      </selectKey> 

 

    insert into play( iid ,typeId) values ( #{ iID ,jdbcType=INTEGER} ,#{typeID,jdbcType=INTEGER}) 

 </insert> 

 

说明:

 

1、无需为序列创建触发器(trigger),order="BEFORE"确定了在插入数据之前取得主键,再将主键随其他字段一起插入即可。

 

2、做了一个试验,在创建触发器的情况下,使selectKey的order="AFTER",再使selectKey选择序列的currval,发现currval还未加1。所以只能用1中的方法。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值