代码搜索:trigger
找到约 3,730 项符合「trigger」的源代码
代码结果 3,730
www.eeworm.com/read/431972/8642830
sql 触发器.sql
select * From tb_topic
select * from tb_reply
Alter Trigger t_InsertReply
On tb_topic
For Insert
As
Insert into tb_reply (Topicid) Select Id From inserted deleted
--select Id
www.eeworm.com/read/385990/8772855
c peaktest.c
/* Verify correctness of the peak routine
* Copyright 2004 Phil Karn, KA9Q
*/
#include
#include
#include
/* These values should trigger leading/trailing array fragment
www.eeworm.com/read/372550/9503839
m schmitt.m
function [y,t]=schmitt(x,low,high)
% Pass input signal X through a schmitt trigger
% SCHMITT(X,LOW,HIGH) gives low and high thresholds. LOW and HIGH can be
% scalars or can be vectors specifiying d
www.eeworm.com/read/365161/9876519
m schmitt.m
function [y,t]=schmitt(x,low,high)
% Pass input signal X through a schmitt trigger
% SCHMITT(X,LOW,HIGH) gives low and high thresholds. LOW and HIGH can be
% scalars or can be vectors specifiying d
www.eeworm.com/read/162558/10296215
smp-race
Answering y here disables option -y for the sar command.
We found that 2.2.x kernels (with x
www.eeworm.com/read/467759/7000684
m schmitt.m
function [y,t]=schmitt(x,low,high)
% Pass input signal X through a schmitt trigger
% SCHMITT(X,LOW,HIGH) gives low and high thresholds. LOW and HIGH can be
% scalars or can be vectors specifiying d
www.eeworm.com/read/448851/7524752
frm 9111prtg.frm
VERSION 4.00
Begin VB.Form PrTg9111
Appearance = 0 'Flat
BackColor = &H00C0C0C0&
Caption = "9111 Pre-Trigger Interrupt"
ClientHeight = 5460
Client
www.eeworm.com/read/399439/7863601
sql deliverymaster_insert.sql
CREATE TRIGGER DeliveryMaster_Insert
ON DeliveryMaster
FOR INSERT
AS
/*如果变动记录是0,就不执行*/
IF @@ROWCOUNT = 0 RETURN
/*定义变量
@DeliveryID : 出货单号
@DeliveryDate : 出货日期
@DeliveryProperty : 出货属性
@Custo
www.eeworm.com/read/241364/13150653
sql pizza_triggers.sql
/*-- pizza_triggers.sql */
CREATE OR REPLACE TRIGGER delivery_info_insert
INSTEAD OF INSERT ON delivery_info
DECLARE
-- cursor to get the driver ID by name
CURSOR curs_get_driver_id ( cp_dr
www.eeworm.com/read/241364/13151178
sql final_audit.sql
/*-- final_audit.sql */
CREATE OR REPLACE TRIGGER audit_update
AFTER UPDATE OF STRIKE, SPARE, SCORE ON FRAME
REFERENCING OLD AS prior_to_cheat NEW AS after_cheat
FOR EACH ROW
WHEN ( prior_to_chea