代码搜索:trigger
找到约 3,730 项符合「trigger」的源代码
代码结果 3,730
www.eeworm.com/read/166949/9988302
h resource.h
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by UseIPL.rc
//
#define IDR_MAINFRAME 128
#define ID_LOAD_FROM_FILE 32772
#def
www.eeworm.com/read/428535/8861213
sql 触发器的使用.sql
select * from vote
create trigger update_vote
on vote
instead of update
as
if update(vote)
begin
update vote
set vote=vote+50
where sno='95001'
end
update vote
set vote=vot
www.eeworm.com/read/183260/9173789
sql cascadersinserts.sql
REM CascadeRSInserts.sql
REM Chapter 11, Oracle9i PL/SQL Programming by Scott Urman
REM This trigger cascades inserts into registered_students into
REM classes and students.
CREATE OR REPLACE TR
www.eeworm.com/read/165806/10050964
html imagemapcheat.html
ImageMap Demo Cheat Sheet
Live Feedback ImageMap (Hints)
The seven areas and the nine actions they trigger are:
My face is surrounded by a
www.eeworm.com/read/468438/6990000
sql demo05.sql
create table demo ( x int primary key );
create or replace trigger demo_bifer
before insert on demo
for each row
declare
l_lock_id number;
resource_busy exception;
pragma except
www.eeworm.com/read/236873/7119091
m schmitt.m
function [y,t]=schmitt(x,thresh,minwid)
% 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 specif
www.eeworm.com/read/125072/7140997
install
Secure shell has the ability to run a command remotely. This means it has
an environment we might want to audit. To use this test, you can leave
env_audit exactly where it is. To trigger the audit, t
www.eeworm.com/read/125072/7141004
install
Remote Shell has the ability to run a command remotely. This means it has
an environment we might want to audit. To use this test, you can leave
env_audit exactly where it is. To trigger the audit, t
www.eeworm.com/read/458010/7314228
m schmitt.m
function [y,t]=schmitt(x,thresh,minwid)
% 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 specif
www.eeworm.com/read/454130/7397778
sql demo05.sql
create table demo ( x int primary key );
create or replace trigger demo_bifer
before insert on demo
for each row
declare
l_lock_id number;
resource_busy exception;
pragma except