代码搜索:trigger
找到约 3,730 项符合「trigger」的源代码
代码结果 3,730
www.eeworm.com/read/241364/13151557
sql validate_score.sql
/*-- validate_score.sql */
CREATE OR REPLACE TRIGGER validate_score
AFTER INSERT OR UPDATE ON frame
FOR EACH ROW
BEGIN
IF :NEW.strike = 'Y' AND
:NEW.score < 10 THEN
RAISE_APPLICAT
www.eeworm.com/read/241364/13151577
trg employee.trg
CREATE OR REPLACE TRIGGER EMPLOYEE_bir
BEFORE INSERT ON EMPLOYEE
FOR EACH ROW
DECLARE
BEGIN
IF :NEW.EMPLOYEE_ID IS NULL
THEN
:NEW.EMPLOYEE_ID := EMPLOYEE_CP.next_key;
END IF
www.eeworm.com/read/120487/6072077
sql plpython_error.sql
-- test error handling, i forgot to restore Warn_restart in
-- the trigger handler once. the errors and subsequent core dump were
-- interesting.
SELECT invalid_type_uncaught('rick');
SELECT invalid
www.eeworm.com/read/488127/6497076
txt 讲义.txt
触发器:
语法:
create or replace trigger 名称
before/after/instead of insert/update/delete
on 表名
for each row /statement
when(条件)
declare
begin
exception
end;
--for each row/statement
www.eeworm.com/read/152411/12116418
c os_alarm.c
/**
* @file
* Alarms that trigger event flags once the alarm timer runs out.
*
* Copyright (c) 2002, 2003 Leon Woestenberg
* Copyright (c) 2002, 2003 Axon Digital
www.eeworm.com/read/339819/12202581
txt 12db.txt
--create trigger hytrigger2 on 仓库 for update
--as
--begin
-- create table triuser1
--(
-- userid int identity(1,1) primary key,
-- username varchar(50),
-- userpwd varchar(50)
--)
--inser
www.eeworm.com/read/18335/784513
v mux3.v
// Multiplexor example 3
module mux3(out, a, b, sel);
output out;
input a, b, sel;
reg out;
/* changes on a, b, and sel trigger the
always block to execute */
always @(a or b or sel)
begi
www.eeworm.com/read/18335/784515
v mux2.v
// Multiplexor example 2
module mux2(out, a, b, sel);
output out;
input a, b, sel;
reg out;
/* changes on a, b, and sel trigger the
always block to execute */
always @(a or b or sel)
begi
www.eeworm.com/read/451334/1662204
java simplequartzjob.java
/*
* Created on Sep 21, 2006
*
* This class is a simple Job which prints out execution time with its trigger's name
*/
package com.ibm.developerworks.quartz;
import java.util.Date;
impor
www.eeworm.com/read/237048/4634617
java pragmaloadstatics.java
/*
* $Id: PragmaLoadStatics.java,v 1.1 2004/02/24 08:04:48 epr Exp $
*/
package org.jnode.vm;
/**
* Exception to trigger the compiler to load the statics register upon entry
* of this me