没得感情的吃饭机器 2017-06-07 10:43 采纳率: 0%
浏览 1603
已采纳

insert插入数据时序列增加1,使用hibernate时序列增加2

create table t_foo(
t_id int primary key,
t_value varchar2(50) not null
);

create sequence t_foo_0
increment by 1
start with 1
nomaxvalue
nominvalue
nocache

create or replace trigger t_foo_t
before insert on t_foo
for each row
begin
select t_foo_0.nextval into:new.t_id from dual;
end;

使用:
insert into t_foo(t_value) values('test');
图片说明
----------test代码
TFoo tfoo = new TFoo();
tfoo.setTValue("foo100");
Session session = HibernateUtils.openSession();
Transaction ts = session.getTransaction();
ts.begin();
session.save(tfoo);
ts.commit();
session.close();
图片说明
刚刚申请的号,求各位大神帮忙,不胜感激

  • 写回答

2条回答 默认 最新

  • 伪墨 2017-06-09 08:38
    关注

    去掉SEQUENCE的触发器,Hibernate是直接调用SEQUENCE.nextval的,此时如果数据库端有主键触发器的话就会增加2

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 MAC安装佳能LBP2900驱动的网盘提取码
  • ¥400 微信停车小程序谁懂的来
  • ¥15 ATAC测序到底用什么peak文件做Diffbind差异分析
  • ¥15 安装ubantu过程中第一个vfat 文件挂载失败
  • ¥20 GZ::CTF如何兼容一些靶机?
  • ¥15 etcd集群部署问题
  • ¥20 谁可以帮我一下问一下各位
  • ¥15 为何重叠加权后love图的SMD与svyCreateTableOne函数绘制基线表的不一致
  • ¥15 QFILHelper怎么恢复全字库,提示进程已完成,只能恢复分区文件
  • ¥150 求 《小魔指》街机游戏机整合模拟软件