代码搜索:trigger
找到约 3,730 项符合「trigger」的源代码
代码结果 3,730
www.eeworm.com/read/399439/7863658
sql changedetail_insert.sql
CREATE TRIGGER ChangeDetail_Insert
ON ChangeDetail
FOR INSERT
AS
/* 如果新增记录数是0就结束触发程序 */
IF @@ROWCOUNT = 0 RETURN
/* 定义变量
@ProductID : 商品编号
@Quantity : 数量
*/
DECLARE @ProductID Char(10)
DE
www.eeworm.com/read/399439/7863664
sql accountreceivablemaster_delete.sql
CREATE TRIGGER AccountReceivableMaster_Delete
ON AccountReceivableMaster
FOR DELETE
AS
/* 如果修改记录数是0就结束触发程序 */
IF @@ROWCOUNT = 0 RETURN
/* 定义变量
@CustomerID : 客户编号
@Advance : 暂收款
*/
DECLARE
www.eeworm.com/read/199351/7865255
c fet140_dma_13.c
//******************************************************************************
// MSP-FET430P140 Demo - DMA0/1/2, USART0 UART 9600 Full-Duplex Transcvr, ACLK
//
// Description: UART0 communicat
www.eeworm.com/read/199351/7865274
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/199351/7865471
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/199351/7865514
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/247283/12668459
test main.test
# 2001 September 15
#
# The author disclaims copyright to this source code. In place of
# a legal notice, here is a blessing:
#
# May you do good and not evil.
# May you find forgiveness for yo
www.eeworm.com/read/143387/12879662
c alter.c
/*
** 2005 February 15
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgivene
www.eeworm.com/read/143387/12879744
test main.test
# 2001 September 15
#
# The author disclaims copyright to this source code. In place of
# a legal notice, here is a blessing:
#
# May you do good and not evil.
# May you find forgiveness for yo
www.eeworm.com/read/142788/12921771
h objectivestrigger.h
// ----------------------------------------------------------------------- //
//
// MODULE : ObjectivesTrigger.h
//
// PURPOSE : ObjectivesTrigger - Definition
//
// CREATED : 10/4/98
//
// -