代码搜索:trigger
找到约 3,730 项符合「trigger」的源代码
代码结果 3,730
www.eeworm.com/read/227935/14406174
txt 随时间增长从头记数.txt
/*创建表*/
create table tab1(a int ,b char(1),c char(10))
--解法2:
/*建立触发器*/
create trigger autoadd
on tab1
for insert
as
declare @autoid int,@b char(1),@date char(10)
select @autoid=1,
www.eeworm.com/read/12870/251567
bcd cm7tdmi.bcd
# CM7TDMI.BCD file. This file contains the board definition for the
# ARM7TDMI Core Module with 1 Cross-Trigger Channel
#
# Copyright 2001-2003 ARM Limited.
[BOARD=CM7TDMI-4XTRIG]
Advanced_Infor
www.eeworm.com/read/493621/1165104
h f3system.h
// sound defs
extern int max_banks_this_game; //=memory_region_length(REGION_SOUND1)/0x200000;
extern char f3_shared_ram[]; // In case a driver needs to map this...
extern int int7_active; // Trigger
www.eeworm.com/read/162614/5527022
c pr23135.c
/* Based on execute/simd-1.c, modifed by joern.rennecke@st.com to
trigger a reload bug. Verified for gcc mainline from 20050722 13:00 UTC
for sh-elf -m4 -O2. */
#ifndef STACK_SIZE
#define STAC
www.eeworm.com/read/345393/3199670
sql changedetail_update.sql
CREATE TRIGGER ChangeDetail_Update
ON ChangeDetail
FOR UPDATE
AS
/* 如果修改记录数是0就结束触发程序 */
IF @@ROWCOUNT = 0 RETURN
/* 定义变量
@NewProductID : 新的商品编号
@OldProductID : 旧的商品编号
@NewQuantity : 新的数量
www.eeworm.com/read/317481/3579587
sym osc_ctrl.sym
VERSION 5
BEGIN SYMBOL
SYMBOLTYPE BLOCK
TIMESTAMP 2006 1 13 18 6 11
SYMPIN 0 -480 Input rst
SYMPIN 0 -416 Input mclk
SYMPIN 0 -352 Input hold
SYMPIN 0 -288 Input trigger_en
SYMPIN 0 -224 Inpu
www.eeworm.com/read/388478/2550566
hif research.hif
Version 5.0 Build 148 04/26/2005 SJ Full Version
33
1689
OFF
OFF
OFF
OFF
OFF
FV_OFF
VRSM_ON
VHSM_ON
0
# entity
my_trigger
# logic_option {
AUTO_RAM_RECOGNITION
ON
}
# case_sensitive
www.eeworm.com/read/366702/2878341
c pr23135.c
/* Based on execute/simd-1.c, modified by joern.rennecke@st.com to
trigger a reload bug. Verified for gcc mainline from 20050722 13:00 UTC
for sh-elf -m4 -O2. */
#ifndef STACK_SIZE
#define STA
www.eeworm.com/read/366702/2881261
c 20050922-2.c
/* 20050922-1.c does not trigger the expand_shift rotate bug on sh4-elf, but
this does. */
/* { dg-do run } */
/* { dg-options "-O1 -std=c99" } */
#include
#if __INT_MAX__ == 21474
www.eeworm.com/read/472566/6870609
sql 9-3.sql
USE Educational
GO
-- 如果已存在同名触发器,则先进行删除操作
IF exists(SELECT * FROM dbo.sysobjects
WHERE id = object_id(N'TRGrade_Update')
and OBJECTPROPERTY(id, N'IsTrigger') = 1)
DROP TRIGGER TRGrade_