觸發器是一種特殊的存儲過程
ORACLE 觸發器
ORACLE產生數據庫觸發器的語法為
create [or replace] trigger 觸發器名 觸發時間 觸發事件
on 表名
[for each row]
pl/sql 語句
其中
觸發器名
觸發時間
before
after
觸發事件
insert
update
delete
表 名
for each row
舉例
create trigger auth_secure
before insert or update or delete file://對整表更新前觸發
on auths
begin
if(to_char(sysdate
RAISE_APPLICATION_ERROR(
( RAISE_APPLICATION_ERROR是函數
參數是字符串
end if;
end
From:http://tw.wingwit.com/Article/program/Oracle/201311/17609.html