代码搜索:trigger
找到约 3,730 项符合「trigger」的源代码
代码结果 3,730
www.eeworm.com/read/470693/1456260
c compare1.c
/* -Wall is supposed to trigger -Wsign-compare for C++. PR 10604.
See also gcc.dg/compare7.c. */
/* { dg-do compile } */
/* { dg-options "-Wall" } */
int f(unsigned a, int b)
{
return a < b;
www.eeworm.com/read/470693/1464544
c compare7.c
/* -Wall is not supposed to trigger -Wsign-compare for C. PR 10604.
See also g++.dg/warn/compare1.C. */
/* { dg-do compile } */
/* { dg-options "-Wall" } */
int f(unsigned a, int b)
{
return
www.eeworm.com/read/240162/4578895
c compare1.c
/* -Wall is supposed to trigger -Wsign-compare for C++. PR 10604.
See also gcc.dg/compare7.c. */
/* { dg-do compile } */
/* { dg-options "-Wall" } */
int f(unsigned a, int b)
{
return a < b;
www.eeworm.com/read/233448/4670905
c compare1.c
/* -Wall is supposed to trigger -Wsign-compare for C++. PR 10604.
See also gcc.dg/compare7.c. */
/* { dg-do compile } */
/* { dg-options "-Wall" } */
int f(unsigned a, int b)
{
return a < b;
www.eeworm.com/read/233448/4686310
c compare7.c
/* -Wall is not supposed to trigger -Wsign-compare for C. PR 10604.
See also g++.dg/warn/compare1.C. */
/* { dg-do compile } */
/* { dg-options "-Wall" } */
int f(unsigned a, int b)
{
return
www.eeworm.com/read/345393/3199664
sql deliverymaster_update.sql
CREATE TRIGGER DeliveryMaster_Update
ON DeliveryMaster
FOR UPDATE
AS
IF @@ROWCOUNT = 0 RETURN
/*定义变量
@DeliveryID : 出货单号
@DeliveryProperty : 出货属性
@NewAmount : 新的出货单金额
@OldAmount : 旧的出货单金额
@Cu
www.eeworm.com/read/345393/3199684
sql accountpayabledetail_insert.sql
CREATE TRIGGER AccountPayableDetail_Insert
ON AccountPayableDetail
FOR INSERT
AS
/* 如果修改记录数是0就结束触发程序 */
IF @@ROWCOUNT = 0 RETURN
/* 定义变量
@PurchaseID : 进货单号
@SupplierID : 供应商编号
@Balance : 冲
www.eeworm.com/read/340665/3272715
c compare1.c
/* -Wall is supposed to trigger -Wsign-compare for C++. PR 10604.
See also gcc.dg/compare7.c. */
/* { dg-do compile } */
/* { dg-options "-Wall" } */
int f(unsigned a, int b)
{
return a < b;
www.eeworm.com/read/340665/3281070
c compare7.c
/* -Wall is not supposed to trigger -Wsign-compare for C. PR 10604.
See also g++.dg/warn/compare1.C. */
/* { dg-do compile } */
/* { dg-options "-Wall" } */
int f(unsigned a, int b)
{
return
www.eeworm.com/read/306178/3764258
c xuanhebao.c
// Room: /lingzhou/xuanhebao.c
// Java Sep.23 1998
#include
#define SHIP_TO "d/huanghe/guchangcheng"
#include
inherit ROOM;
void check_trigger();
void on_board();
void arri