Terry.Li-彬

虚其心,可解天下之问;专其心,可治天下之学;静其心,可悟天下之理;恒其心,可成天下之业。

  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理 ::
  143 随笔 :: 344 文章 :: 130 评论 :: 0 Trackbacks
用触发器实现在归定时间内不能修改数据!如果修改抛出一个异常!(注意:自定义异常号段为.20000到21000
 1create or replace trigger trg_IU
 2  before insert or update or delete on table_bill  
 3  for each row
 4declare
 5  v_str varchar2(10);
 6begin
 7if inserting then
 8v_str:='insert';
 9else
10v_str:='update';
11end if;
12insert into lyx(t_name) values(v_str);
13  if(to_char(sysdate,'hh24:mi'between '08:00' and '18:00'then
14  raise_application_error(-20510,'hello a! ');
15  end if;
16end trg_IU;
posted on 2007-09-23 13:37 礼物 阅读(218) 评论(0)  编辑  收藏

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

网站导航: