Knight of the round table

wansong

oracle sequence ibatis

http://www.javaeye.com/topic/215571
<!-- Oracle SEQUENCE -->
<insert id="insertProduct-ORACLE" parameterClass="com.domain.Product">
    <selectKey resultClass="int" keyProperty="id" type="pre">
        <![CDATA[SELECT STOCKIDSEQUENCE.NEXTVAL AS ID FROM DUAL]]>
    </selectKey>
    <![CDATA[insert into PRODUCT (PRD_ID,PRD_DESCRIPTION) values(#id#,#description#)]]>
</insert>


http://www.dnbcw.com/biancheng/oracle/BVBZ11361.html

create table example(
id number(4) not null primary key,
name varchar(25),
phone varchar(10),
address varchar(50));
然后,你需要一个自定义的sequence
create sequence emp_sequence
increment by 1 -- 每次加几个
start with 1 -- 从1开始计数
nomaxvalue -- 不设置最大值
nocycle -- 一直累加,不循环
nocache -- 不建缓冲区
以上代码完成了一个序列(sequence)的建立过程,名称为emp_sequence,范围是从1开始到无限大(无限大的程度是由你机器决定的),nocycle 是决定不循环,如果你设置了最大值那么你可以用cycle 会使seq到最大之后循环.对于nocache顺便说一下如果你给出了cache值那么系统将自动读取你的cache值大小个seq

create or replace trigger "触发器名称" before
insert on example for each row when (new.id is null)
begin
select emp_sequence.nextval into: new.id from dual;
end;



posted on 2010-09-19 21:46 w@ns0ng 阅读(624) 评论(0)  编辑  收藏 所属分类: Databaseibatis


只有注册用户登录后才能发表评论。


网站导航: