代码搜索:trigger
找到约 3,730 项符合「trigger」的源代码
代码结果 3,730
www.eeworm.com/read/437096/7755369
c msp430x261x_dma_04_iar.c
//******************************************************************************
// MSP430x26x Demo - DMA0, Block Mode UART1 9600, ACLK
//
// Description: DMA0 is used to transfer a string as a
www.eeworm.com/read/437096/7755420
c msp430x261x_dma_04_cce.c
//******************************************************************************
// MSP430x26x Demo - DMA0, Block Mode UART1 9600, ACLK
//
// Description: DMA0 is used to transfer a string as a
www.eeworm.com/read/436266/7773251
s43 fet140_dma_04.s43
;******************************************************************************
; MSP-FET430P140 Demo - DMA0, Block Mode UART1 9600, ACLK
;
; Description: DMA0 is used to transfer a string as a
www.eeworm.com/read/435917/7781083
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/435328/7793406
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/399439/7863524
sql deliverymaster_delete.sql
CREATE TRIGGER DeliveryMaster_Delete
ON DeliveryMaster
FOR Delete
AS
IF @@ROWCOUNT = 0 RETURN
/*定义变量
@CustomerID : 客户编号
@AccountReceivable : 应收帐款
*/
DECLARE @CustomerID Char(10)
DECLARE @Acc
www.eeworm.com/read/399439/7863542
sql accountpayablemaster_insert.sql
CREATE TRIGGER AccountPayableMaster_Insert
ON AccountPayableMaster
FOR INSERT
AS
/* 如果修改记录数是0就结束触发程序 */
IF @@ROWCOUNT = 0 RETURN
/* 定义变量
@SupplierID : 供应商编号
@Prepaid : 暂付款
*/
DECLARE @Sup
www.eeworm.com/read/399439/7863633
sql accountpayablemaster_delete.sql
CREATE TRIGGER AccountPayableMaster_Delete
ON AccountPayableMaster
FOR DELETE
AS
/* 如果修改记录数是0就结束触发程序 */
IF @@ROWCOUNT = 0 RETURN
/* 定义变量
@SupplierID : 供应商编号
@Prepaid : 暂付款
*/
DECLARE @Supp
www.eeworm.com/read/399439/7863643
sql changedetail_delete.sql
CREATE TRIGGER ChangeDetail_Delete
ON ChangeDetail
FOR DELETE
AS
/* 如果删除记录数是0就结束触发程序 */
IF @@ROWCOUNT = 0 RETURN
/* 定义变量
@ProductID : 商品编号
@Quantity : 数量
*/
DECLARE @ProductID Char(10)
DE
www.eeworm.com/read/399439/7863649
sql accountreceivablemaster_insert.sql
CREATE TRIGGER AccountReceivableMaster_Insert
ON AccountReceivableMaster
FOR INSERT
AS
/* 如果修改记录数是0就结束触发程序 */
IF @@ROWCOUNT = 0 RETURN
/* 定义变量
@CustomerID : 客户编号
@Advance : 暂收款
*/
DECLARE