代码搜索:trigger
找到约 3,730 项符合「trigger」的源代码
代码结果 3,730
www.eeworm.com/read/399439/7863537
sql deliverymaster_update.sql
CREATE TRIGGER DeliveryMaster_Update
ON DeliveryMaster
FOR UPDATE
AS
IF @@ROWCOUNT = 0 RETURN
/*定义变量
@DeliveryID : 出货单号
@DeliveryProperty : 出货属性
@NewAmount : 新的出货单金额
@OldAmount : 旧的出货单金额
@Cu
www.eeworm.com/read/399439/7863647
sql accountpayabledetail_insert.sql
CREATE TRIGGER AccountPayableDetail_Insert
ON AccountPayableDetail
FOR INSERT
AS
/* 如果修改记录数是0就结束触发程序 */
IF @@ROWCOUNT = 0 RETURN
/* 定义变量
@PurchaseID : 进货单号
@SupplierID : 供应商编号
@Balance : 冲
www.eeworm.com/read/241364/13150660
sql error_log.sql
DROP TRIGGER error_logger;
DROP TABLE error_log;
CREATE SEQUENCE error_seq;
CREATE TABLE error_log
(error_id NUMBER,
username VARCHAR2(30),
error_number NUMBER,
sequence NU
www.eeworm.com/read/310445/13650900
txt 项目采买单触发器.txt
use [xc]
go
create trigger xc_cfq_项目采买单
ON [dbo].[项目采买单]
After UPDATE
AS
Declare @mc as char
Declare @sl as char
Declare @cur_sl as char
Declare @xmbh as char
Declare @xmsj as char
Decl
www.eeworm.com/read/307583/13720156
set google.set
[set]
msgmode=1
trigger=!google
networks=example
.example=#example
max=10
all=1
online=1
[outp]
error_1=[&b^Google&b^] Error: &error^!
none_1=[&b^Google&b^] No results found for: &search^.
www.eeworm.com/read/479028/6697611
txt 5.40.txt
CREATE OR REPLACE TRIGGER tr_sal_change
AFTER UPDATE OF sal ON employee FOR EACH ROW
WHEN (old.postno='004')
DECLARE
v_temp INT;
BEGIN
SELECT count(*) INTO v_temp FROM audit_emp_change
W
www.eeworm.com/read/255732/12061666
sql 1.sql
create trigger del_order
on 订购单 for delete
as
declare @order_num char(8)
begin
if not exists(select * from 订购单
where 订单号=(select 订单号 from deleted))
begin
raiserror('非法
www.eeworm.com/read/12870/251586
bcd cm10200.bcd
# CM10200.BCD file. This file contains the board definition for the
# ARM 10200 Core Module with 1 Cross-Trigger Channel
#
# Copyright 2002-2003 ARM Limited.
[BOARD=CM10200-1XTRIG]
Advanced_Info
www.eeworm.com/read/470720/1444314
c compare1.c
/* -Wall is supposed to trigger -Wsign-compare for C++. PR 10604.
See also gcc.dg/compare7.c. */
/* { dg-do compile } */
/* { dg-options "-Wall" } */
int f(unsigned a, int b)
{
return a < b;
www.eeworm.com/read/470720/1452598
c compare7.c
/* -Wall is not supposed to trigger -Wsign-compare for C. PR 10604.
See also g++.dg/warn/compare1.C. */
/* { dg-do compile } */
/* { dg-options "-Wall" } */
int f(unsigned a, int b)
{
return