代码搜索:trigger

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

代码结果 3,730
www.eeworm.com/read/173685/9642293

c cascwave.c

#ifndef _REFERENCE //*----------------------------------------------------------------------------- //* ATMEL Microcontroller Software Support - ROUSSET - //*-------------------------------
www.eeworm.com/read/414661/11107042

txt 14.txt

create trigger biufer_emp_empno before insert or update of empno on emp referencing old as old_value new as new_value for each row when(new_value.empno7782) begin :new_value.
www.eeworm.com/read/414181/11125411

h downloader.h

@interface Downloader : NSObject { NSString * url, * file; int expectedBytes; int loadedBytes; NSURL * nsurl; BOOL failed, finished; NSMutableData * data; NSString * trig; UIA
www.eeworm.com/read/268639/11126915

aps 013_cof.aps

013_cof11-Apr-2007 13:21:0211-Apr-2007 16:01:55Object.bmp111-
www.eeworm.com/read/413826/11140769

cxgate xgate.cxgate

#include /* common defines and macros */ #include "xgate.h" #include /* derivative information */ tBuffer Buffer0; #define SIMPLE // SCI Handler - simple
www.eeworm.com/read/267105/11194511

cs eventconfigbase.cs

using System; using System.Windows.Forms; namespace NiceTracker.Events { /// /// Summary description for EventConfigBase. /// public class EventConfigBase { publ
www.eeworm.com/read/412320/11205120

c fet140_dma_15.c

//****************************************************************************** // MSP-FET430P140 Demo - DMA0/1/2, USART0 SPI 3-Wire SPI Slave P1.x Exchange // // Description: SPI Master communi
www.eeworm.com/read/412320/11205311

c fet140_dma_16.c

//****************************************************************************** // MSP-FET430P140 Demo - DMA0/1/2, USART1 SPI 3-Wire Master P1.x Exchange // // Description: SPI Master communicat
www.eeworm.com/read/412320/11205359

c fet140_dma_14.c

//****************************************************************************** // MSP-FET430P140 Demo - DMA0/1/2, USART0 SPI 3-Wire SPI Master P1.x Exchange // // Description: SPI Master commun
www.eeworm.com/read/266116/11239841

cpp demo_exception_handling_2.cpp

//********************************************************** //catch说明的捕获异常的类型必须和throw引发异常的类型相匹配, //若类型都不匹配,可以使用缺省的异常捕获和处理: catch(...) //注意: catch捕获块的顺序很重要,因为顺序匹配执行. //**************************