代码搜索:trigger
找到约 3,730 项符合「trigger」的源代码
代码结果 3,730
www.eeworm.com/read/468438/6990015
sql demo04.sql
create table t ( x int, y int );
insert into t values ( 1, 1 );
commit;
create or replace trigger t_bufer
before update on t for each row
begin
dbms_output.put_line
( 'old.x = '
www.eeworm.com/read/454130/7397793
sql demo04.sql
create table t ( x int, y int );
insert into t values ( 1, 1 );
commit;
create or replace trigger t_bufer
before update on t for each row
begin
dbms_output.put_line
( 'old.x = '
www.eeworm.com/read/399439/7863573
sql accountreceivablemaster_update.sql
CREATE TRIGGER AccountReceivableMaster_Update
ON AccountReceivableMaster
FOR UPDATE
AS
/* 如果修改记录数是0就结束触发程序 */
IF @@ROWCOUNT = 0 RETURN
/* 定义变量
@CustomerID : 客户编号
@NewAdvance : 新的暂收款
@OldAdv
www.eeworm.com/read/399439/7863623
sql customer_update.sql
CREATE TRIGGER Customer_Update
ON Customer
FOR Update
AS
/*如果变动记录是0,就不执行*/
IF @ROWCOUNT = 0 RETURN
/*定义变量
NewCreditLine : 新的信用额度
OldCreditLine : 旧的信用额度
*/
DECLARE @NewCreditLine Decimal(12,
www.eeworm.com/read/241364/13150574
sql increment_extents.sql
CREATE OR REPLACE TRIGGER after_suspend
AFTER SUSPEND
ON SCHEMA
DECLARE
CURSOR curs_get_extents IS
SELECT max_extents + 1
FROM user_tables
WHERE table_name = 'MONTHLY_SUMMARY';
v_
www.eeworm.com/read/314474/13566549
x86 readme.x86
Note for Intel x86 platforms:
The function KneserNey::lowerOrderWeight() seems to trigger a compiler
bug in gcc 2.95.3 with optimization, on the i686-pc-linux-gnu,
i386-pc-solaris2, and i686-pc-c
www.eeworm.com/read/141300/5770431
out one-shot.out
Warning: vin: no DC value, transient time 0 value used
Circuit: *One-shot Trigger.
Doing analysis at TEMP = 300.150000 and TNOM = 300.150000
Warning: Pd = 0 is less than W.
Warning: Ps = 0 is less t
www.eeworm.com/read/141300/5770476
out one-shot.out
Warning: vin: no DC value, transient time 0 value used
Circuit: *One-shot Trigger.
Doing analysis at TEMP = 300.150000 and TNOM = 300.150000
Warning: Pd = 0 is less than W.
Warning: Ps = 0 is less t
www.eeworm.com/read/410726/11270811
trg joue_dans.trg
TYPE=TRIGGERS
triggers='CREATE DEFINER=`root`@`localhost` TRIGGER realisateur_joueur\nAFTER INSERT ON joue_dans \nFOR EACH ROW \nDELETE FROM joue_dans\nWHERE NEW.code_personne IN (\nSELECT F.c
www.eeworm.com/read/156494/11797884
sql demo04.sql
create table t ( x int, y int );
insert into t values ( 1, 1 );
commit;
create or replace trigger t_bufer
before update on t for each row
begin
dbms_output.put_line
( 'old.x = '