代码搜索:trigger

找到约 3,730 项符合「trigger」的源代码

代码结果 3,730
www.eeworm.com/read/298105/7973933

c test.c

#include #include #include "fifo.h" #define TOTAL_COUNT 100 void proc_put(HFIFO handle) { int cnt, remain; char buf[2048]; remain = 8; for(cnt = 0; cnt < TOTAL_COUNT; cnt
www.eeworm.com/read/298105/7973941

c test.c

#include #include #include "fifo.h" #define TOTAL_COUNT 100 void proc_put(HFIFO handle) { int cnt, remain; char buf[2048]; remain = 8; for(cnt = 0; cnt < TOTAL_COUNT; cnt
www.eeworm.com/read/246275/12744752

c test.c

#include #include #include "fifo.h" #define TOTAL_COUNT 100 void proc_put(HFIFO handle) { int cnt, remain; char buf[2048]; remain = 8; for(cnt = 0; cnt < TOTAL_COUNT; cnt
www.eeworm.com/read/246275/12744781

c test.c

#include #include #include "fifo.h" #define TOTAL_COUNT 100 void proc_put(HFIFO handle) { int cnt, remain; char buf[2048]; remain = 8; for(cnt = 0; cnt < TOTAL_COUNT; cnt
www.eeworm.com/read/243691/12922931

h global.h

#include "Core_Global.h" #include "Barrier.h" #include "CharICS.h" #include "Chars.h" #include "Frustum.h" #include "MCL.h" #include "MSL.h" #include "Script.h" #include "Spell.h" #include
www.eeworm.com/read/311307/13632688

c test.c

#include #include #include "fifo.h" #define TOTAL_COUNT 100 void proc_put(HFIFO handle) { int cnt, remain; char buf[2048]; remain = 8; for(cnt = 0; cnt < TOTAL_COUNT; cnt
www.eeworm.com/read/311307/13632694

c test.c

#include #include #include "fifo.h" #define TOTAL_COUNT 100 void proc_put(HFIFO handle) { int cnt, remain; char buf[2048]; remain = 8; for(cnt = 0; cnt < TOTAL_COUNT; cnt
www.eeworm.com/read/133772/5901007

cxx clock.cxx

//========================================================================== // // common/clock.cxx // // Clock class implementations // //=============================================
www.eeworm.com/read/479028/6697614

txt 5.35.txt

CREATE OR REPLACE TRIGGER tr_sec_emp BEFORE INSERT OR UPDATE OR DELETE ON employee DECLARE -- 可以在这里声明私有变量 BEGIN IF to_char(SYSDATE,'DY','nls_date_language=AMERICAN') in ('SAT','SUN') THEN
www.eeworm.com/read/479028/6697625

txt 5.45.txt

CONN sys/oracle AS SYSDBA; CREATE TABLE event_table( event VARCHAR2(30),--记录系统事件名称 time DATE)--记录事件发生的事件 / CREATE OR REPLACE TRIGGER tr_startup AFTER STARTUP ON DATABASE BEGIN INSERT