oracle数据库自增长没有mysql数据库简单,mysql可以在建表的时候设置auto_increment就好了,但oracle这样不行,oracle数据库必须要建立序列,然后在mybatis插入id时使用这个序列后,才能实现oracle id的自增长。
下面是序列的创建语句:
create sequence TBAL_OA_HOLIDAY_TYPE //序列名称 increment by 1 //以1倍的速度增长,你也可以设置其他数字 start with 1 //从id=1开始增长 maxvalue 9999 //最大值为9999,根据情况 minvalue 1 //最小值1 nocycle //不循环,也就是一直增长 cache 20 //设置缓存cache个序列,如果系统down掉了或者其它情况将会导致序列不连续,也可以设置为---------NOCACHE noorder;
建立了oracle序列之后,我们就可以在mybatis中插入这样使用,来插入id了:
insert into TBL_OA_HOLIDAY_TYPE (ID, TYPE_NAME, REMARK ) values (TBAL_OA_HOLIDAY_TYPE.NEXTVAL, #{typeName,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR} )
我们在插入mybatis插入id的位置用(序列名称+ .NEXTVAL)的形式代替这个id,而不是#{xxx}这样从页面取值了,就是这么简单,自己试试吧,当然了,id必须得是number类型的才行。
如果是UUID作为主键,那么主键用varchar2类型,这样才能用字符串uuid,以下是mybatis oracle的uuid使用方法,比oracle自增长容易很多:
使用uuid作为主键,oracle中有个sys_guid函数可以产生uuid。
<insert id="insert" parameterType="com.xxx.SystemDepartment"> <selectKey keyProperty="id" resultType="String" order="BEFORE"> select sys_guid() from dual </selectKey> insert into TBL_OA_HOLIDAY_TYPE (ID, TYPE_NAME, REMARK ) values (#{id,jdbcType=VARCHAR}, #{typeName,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR} ) </insert>
就写到这里,做测试看看吧!