代码搜索:trigger
找到约 3,730 项符合「trigger」的源代码
代码结果 3,730
www.eeworm.com/read/297392/3886982
form ftimer.form
# Gambas Form File 1.0
{ FTimer Form
Move(253,192,395,234)
Text = ("Timer example")
Border = Window.Fixed
{ Button1 Button
Move(200,80,69,25)
ToolTip = ("Start")
Text = ("Trigger"
www.eeworm.com/read/405423/2292292
java triggertest.java
package org.fosstrak.reader.rprm.core;
import junit.framework.TestCase;
import org.fosstrak.reader.rprm.core.ReaderDevice;
import org.fosstrak.reader.rprm.core.Trigger;
import org.fosstrak.rea
www.eeworm.com/read/368348/2822867
js datefield.js
/*
* Ext JS Library 1.0.1
* Copyright(c) 2006-2007, Ext JS, LLC.
* licensing@extjs.com
*
* http://www.extjs.com/license
*/
/**
* @class Ext.form.DateField
* @extends Ext.form.Trigger
www.eeworm.com/read/366702/2862385
c pr26765.c
/* PR target/pr26765
This testcase used to trigger an unrecognizable insn. */
/* { dg-do compile } */
/* { dg-mips-options "-O2 -w" } */
__thread int *a = 0;
NOMIPS16 void foo (void)
{
extern
www.eeworm.com/read/161040/5563890
txt regerence.txt
CREATE OR REPLACE TRIGGER audit_emp_values
AFTER DELETE OR INSERT OR UPDATE ON emp
--REFERENCING old_emp AS :old new_emp AS :new
REFERENCING OLD AS old_emp NEW AS new_emp
FOR EACH ROW
BEGIN
www.eeworm.com/read/152843/5664632
h iop_sw_cfg_defs_asm.h
#ifndef __iop_sw_cfg_defs_asm_h
#define __iop_sw_cfg_defs_asm_h
/*
* This file is autogenerated from
* file: ../../inst/io_proc/rtl/guinness/iop_sw_cfg.r
* id:
www.eeworm.com/read/183260/9173787
sql insteadof.sql
REM insteadOf.sql
REM Chapter 11, Oracle9i PL/SQL Programming by Scott Urman
REM This script demonstrates the use of an Oracle8 instead-of
REM trigger.
CREATE OR REPLACE VIEW classes_rooms AS
www.eeworm.com/read/423400/10562636
sql table.sql
/****** Object: Trigger dbo.Trig_Forum_BookMarks Script Date: 2002-12-14 15:27:32 ******/
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Trig_Forum_BookMarks]') and OBJECTP
www.eeworm.com/read/468438/6990017
sql demo05.sql
create table t ( x int, y int );
insert into t values ( 1, 1 );
commit;
create or replace trigger t_bufer
before update on t for each row
begin
dbms_output.put_line( 'fired' );
end;
/
set se